OSDN Git Service

[DI] Every DIGlobalVariable should have a type.
authorDavide Italiano <davide@freebsd.org>
Wed, 16 Aug 2017 13:39:07 +0000 (13:39 +0000)
committerDavide Italiano <davide@freebsd.org>
Wed, 16 Aug 2017 13:39:07 +0000 (13:39 +0000)
I'll make this a verifier check to catch other violations. This
commit fixes the tests already in tree.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@311004 91177308-0d34-0410-b5e6-96231b3b80d8

test/Assembler/diglobalvariable.ll
test/Linker/odr.ll
test/Transforms/GlobalMerge/debug-info.ll

index 02dd628..b4ff508 100644 (file)
@@ -20,5 +20,6 @@
 !6 = !DICompositeType(tag: DW_TAG_structure_type, name: "Class", size: 8, align: 8)
 !7 = !DIDerivedType(tag: DW_TAG_member, name: "mem", flags: DIFlagStaticMember, scope: !6, baseType: !3)
 
-; CHECK: !8 = !DIGlobalVariable(name: "mem", scope: !0, isLocal: false, isDefinition: true, declaration: !7)
-!8 = !DIGlobalVariable(name: "mem", scope: !0, declaration: !7)
+; CHECK: !8 = !DIGlobalVariable(name: "mem", scope: !0, type: !9, isLocal: false, isDefinition: true, declaration: !7)
+!8 = !DIGlobalVariable(name: "mem", scope: !0, declaration: !7, type: !9)
+!9 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
index 4938b2f..be1f047 100644 (file)
@@ -11,7 +11,7 @@ source_filename = "test/Linker/odr.ll"
 !llvm.module.flags = !{!8}
 
 !0 = !DIGlobalVariableExpression(var: !1)
-!1 = !DIGlobalVariable(name: "c", scope: null, isLocal: false, isDefinition: true)
+!1 = !DIGlobalVariable(name: "c", scope: null, isLocal: false, isDefinition: true, type: !9)
 !2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3, isOptimized: false, runtimeVersion: 0, emissionKind: NoDebug, retainedTypes: !4, globals: !7)
 !3 = !DIFile(filename: "a", directory: "")
 !4 = !{!5}
@@ -19,4 +19,4 @@ source_filename = "test/Linker/odr.ll"
 !6 = distinct !DISubprogram(name: "b", scope: null, isLocal: false, isDefinition: true, isOptimized: false, unit: !2)
 !7 = !{!0}
 !8 = !{i32 2, !"Debug Info Version", i32 3}
-
+!9 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
index 8d60f36..1f324f3 100644 (file)
@@ -14,17 +14,17 @@ define void @use1() {
   ret void
 }
 ; CHECK: [[A]] = !DIGlobalVariableExpression(var: [[AVAR:![0-9]+]])
-; CHECK: [[AVAR]] = !DIGlobalVariable(name: "a", scope: null, isLocal: false, isDefinition: true)
+; CHECK: [[AVAR]] = !DIGlobalVariable(name: "a", scope: null, type: !2, isLocal: false, isDefinition: true)
 ; CHECK: [[B]] = !DIGlobalVariableExpression(var: [[BVAR:![0-9]+]], expr: [[EXPR:![0-9]+]])
-; CHECK: [[BVAR]] = !DIGlobalVariable(name: "b", scope: null, isLocal: false, isDefinition: true)
+; CHECK: [[BVAR]] = !DIGlobalVariable(name: "b", scope: null, type: !2, isLocal: false, isDefinition: true)
 ; CHECK: [[EXPR]] = !DIExpression(DW_OP_plus_uconst, 4)
 
 !llvm.module.flags = !{!4, !5}
 
 !0 = !DIGlobalVariableExpression(var: !1)
-!1 = !DIGlobalVariable(name: "a", scope: null, isLocal: false, isDefinition: true)
+!1 = !DIGlobalVariable(name: "a", scope: null, type: !6, isLocal: false, isDefinition: true)
 !2 = !DIGlobalVariableExpression(var: !3)
-!3 = !DIGlobalVariable(name: "b", scope: null, isLocal: false, isDefinition: true)
+!3 = !DIGlobalVariable(name: "b", scope: null, type: !6, isLocal: false, isDefinition: true)
 !4 = !{i32 2, !"Debug Info Version", i32 3}
 !5 = !{i32 2, !"Dwarf Version", i32 4}
-
+!6 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)