21 lines · plain
1; RUN: opt -module-summary %s -o %t.bc2; RUN: llvm-lto -thinlto-action=thinlink -o %t.index.bc %t.bc %p/Inputs/drop-debug-info.bc3 4; The imported module has out-of-date debug information, let's make sure we can5; drop them without crashing when materializing later.6; RUN: llvm-link %t.bc -summary-index=%t.index.bc -import=globalfunc:%p/Inputs/drop-debug-info.bc | llvm-dis -o - | FileCheck %s7; CHECK: define available_externally void @globalfunc8; CHECK-NOT: llvm.dbg.value9 10target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"11target triple = "x86_64-apple-macosx10.11.0"12 13 14define i32 @main() #0 {15entry:16 call void (...) @globalfunc()17 ret i32 018}19 20declare void @globalfunc(...)21