Mehdi Amini | 581f0e1 | 2016-05-07 04:10:52 +0000 | [diff] [blame] | 1 | ; RUN: opt -module-summary %s -o %t.bc |
| 2 | ; RUN: llvm-lto -thinlto-action=thinlink -o %t.index.bc %t.bc %p/Inputs/drop-debug-info.bc |
| 3 | |
| 4 | ; The imported module has out-of-date debug information, let's make sure we can |
| 5 | ; drop them without crashing when materializing later. |
Teresa Johnson | 0fca905 | 2017-01-04 14:27:31 +0000 | [diff] [blame^] | 6 | ; RUN: llvm-link %t.bc -summary-index=%t.index.bc -import=globalfunc:%p/Inputs/drop-debug-info.bc | llvm-dis -o - | FileCheck %s |
Mehdi Amini | 581f0e1 | 2016-05-07 04:10:52 +0000 | [diff] [blame] | 7 | ; CHECK: define available_externally void @globalfunc |
| 8 | ; CHECK-NOT: llvm.dbg.value |
| 9 | |
| 10 | target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128" |
| 11 | target triple = "x86_64-apple-macosx10.11.0" |
| 12 | |
| 13 | |
| 14 | define i32 @main() #0 { |
| 15 | entry: |
| 16 | call void (...) @globalfunc() |
| 17 | ret i32 0 |
| 18 | } |
| 19 | |
Teresa Johnson | 0fca905 | 2017-01-04 14:27:31 +0000 | [diff] [blame^] | 20 | declare void @globalfunc(...) |