Add an llc testcase analogous to test/LTO/X86/strip-debug-info.ll
authorAdrian Prantl <aprantl@apple.com>
Thu, 1 Mar 2018 21:53:17 +0000 (21:53 +0000)
committerAdrian Prantl <aprantl@apple.com>
Thu, 1 Mar 2018 21:53:17 +0000 (21:53 +0000)
rdar://problem/37963669

llvm-svn: 326491

llvm/test/DebugInfo/X86/strip-broken-debuginfo.ll [new file with mode: 0644]

diff --git a/llvm/test/DebugInfo/X86/strip-broken-debuginfo.ll b/llvm/test/DebugInfo/X86/strip-broken-debuginfo.ll
new file mode 100644 (file)
index 0000000..80aec58
--- /dev/null
@@ -0,0 +1,22 @@
+; RUN: llvm-as -disable-verify %s -o %t.bc
+; ---- Full LTO ---------------------------------------------
+; RUN: llc -filetype=asm -o - %t.bc 2>&1 | FileCheck %s
+; CHECK-NOT: Broken module found
+; CHECK: warning{{.*}} ignoring invalid debug info
+; CHECK-NOT: Broken module found
+; CHECK: foo
+target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
+target triple = "x86_64-apple-macosx10.12"
+
+declare void @bar()
+
+define void @foo() {
+  call void @bar()
+  ret void
+}
+
+!llvm.module.flags = !{!0}
+!llvm.dbg.cu = !{!1}
+
+!0 = !{i32 2, !"Debug Info Version", i32 3}
+!1 = !DIFile(filename: "broken", directory: "")