summaryrefslogtreecommitdiffstats
path: root/llvm/test/DebugInfo/Generic
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2017-08-31 00:06:18 +0000
committerAdrian Prantl <aprantl@apple.com>2017-08-31 00:06:18 +0000
commit504b82d44b0e03ed6e56c16685ed5732cb16ecca (patch)
tree930c4f43a5184d9c73d76964b36102a4daca482e /llvm/test/DebugInfo/Generic
parent53bb83d2506e21dd987f16daa1947adb7a4c2b6e (diff)
downloadbcm5719-llvm-504b82d44b0e03ed6e56c16685ed5732cb16ecca.tar.gz
bcm5719-llvm-504b82d44b0e03ed6e56c16685ed5732cb16ecca.zip
Don't add a fragment expression when GlobalSRA splits up a single-member struct
Fixes PR34390. https://bugs.llvm.org/show_bug.cgi?id=34390 llvm-svn: 312196
Diffstat (limited to 'llvm/test/DebugInfo/Generic')
-rw-r--r--llvm/test/DebugInfo/Generic/global-sra-single-member.ll53
1 files changed, 53 insertions, 0 deletions
diff --git a/llvm/test/DebugInfo/Generic/global-sra-single-member.ll b/llvm/test/DebugInfo/Generic/global-sra-single-member.ll
new file mode 100644
index 00000000000..1e3fef3a5d9
--- /dev/null
+++ b/llvm/test/DebugInfo/Generic/global-sra-single-member.ll
@@ -0,0 +1,53 @@
+; RUN: opt -S -globalopt < %s | FileCheck %s
+; struct {
+; int f0;
+; } static a;
+; int main() {
+; a.f0++;
+; return 0;
+; }
+
+source_filename = "pr34390.c"
+target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
+target triple = "x86_64-apple-macosx10.12.0"
+
+%struct.anon = type { i32 }
+
+; CHECK: @a.0 = internal unnamed_addr global i32 0, align 4, !dbg ![[GVE:.*]]
+@a = internal global %struct.anon zeroinitializer, align 4, !dbg !0
+
+define i32 @main() #0 !dbg !15 {
+entry:
+ %retval = alloca i32, align 4
+ store i32 0, i32* %retval, align 4
+ %0 = load i32, i32* getelementptr inbounds (%struct.anon, %struct.anon* @a, i32 0, i32 0), align 4, !dbg !18
+ %inc = add nsw i32 %0, 1, !dbg !18
+ store i32 %inc, i32* getelementptr inbounds (%struct.anon, %struct.anon* @a, i32 0, i32 0), align 4, !dbg !18
+ ret i32 0, !dbg !19
+}
+
+attributes #0 = { noinline nounwind optnone ssp uwtable }
+
+!llvm.dbg.cu = !{!2}
+!llvm.module.flags = !{!10, !11, !12, !13}
+
+; CHECK: ![[GVE]] = !DIGlobalVariableExpression(var: !1, expr: !DIExpression())
+!0 = !DIGlobalVariableExpression(var: !1, expr: !DIExpression())
+!1 = distinct !DIGlobalVariable(name: "a", scope: !2, file: !3, line: 3, type: !6, isLocal: true, isDefinition: true)
+!2 = distinct !DICompileUnit(language: DW_LANG_C99, file: !3, producer: "clang version 6.0.0 (trunk 312175) (llvm/trunk 312146)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !5)
+!3 = !DIFile(filename: "test.c", directory: "/")
+!4 = !{}
+!5 = !{!0}
+!6 = distinct !DICompositeType(tag: DW_TAG_structure_type, file: !3, line: 1, size: 32, elements: !7)
+!7 = !{!8}
+!8 = !DIDerivedType(tag: DW_TAG_member, name: "f0", scope: !6, file: !3, line: 2, baseType: !9, size: 32)
+!9 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
+!10 = !{i32 2, !"Dwarf Version", i32 4}
+!11 = !{i32 2, !"Debug Info Version", i32 3}
+!12 = !{i32 1, !"wchar_size", i32 4}
+!13 = !{i32 7, !"PIC Level", i32 2}
+!15 = distinct !DISubprogram(name: "main", scope: !3, file: !3, line: 4, type: !16, isLocal: false, isDefinition: true, scopeLine: 4, isOptimized: false, unit: !2, variables: !4)
+!16 = !DISubroutineType(types: !17)
+!17 = !{!9}
+!18 = !DILocation(line: 5, column: 7, scope: !15)
+!19 = !DILocation(line: 6, column: 3, scope: !15)
OpenPOWER on IntegriCloud