mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-22 19:50:55 +00:00
[DI] Every DIGlobalVariable should have a type.
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
This commit is contained in:
parent
c29af95cf1
commit
9c770381b9
@ -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)
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user