diff options
Diffstat (limited to 'llvm/test/ThinLTO/X86/drop-debug-info.ll')
-rw-r--r-- | llvm/test/ThinLTO/X86/drop-debug-info.ll | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/llvm/test/ThinLTO/X86/drop-debug-info.ll b/llvm/test/ThinLTO/X86/drop-debug-info.ll new file mode 100644 index 00000000000..f8ed8dff420 --- /dev/null +++ b/llvm/test/ThinLTO/X86/drop-debug-info.ll @@ -0,0 +1,20 @@ +; RUN: opt -module-summary %s -o %t.bc +; RUN: llvm-lto -thinlto-action=thinlink -o %t.index.bc %t.bc %p/Inputs/drop-debug-info.bc + +; The imported module has out-of-date debug information, let's make sure we can +; drop them without crashing when materializing later. +; RUN: llvm-lto -thinlto-action=import %t.bc -thinlto-index=%t.index.bc -o - | llvm-dis -o - | FileCheck %s +; CHECK: define available_externally void @globalfunc +; CHECK-NOT: llvm.dbg.value + +target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-apple-macosx10.11.0" + + +define i32 @main() #0 { +entry: + call void (...) @globalfunc() + ret i32 0 +} + +declare void @globalfunc(...)
\ No newline at end of file |