thinlto-multi-module.ll 628 B

12345678910111213141516171819202122
  1. ; REQUIRES: x86-registered-target
  2. ; RUN: opt -module-summary -o %t1.o %s
  3. ; RUN: llvm-lto -thinlto -o %t %t1.o
  4. ; RUN: opt -module-summary -o %t2.o %S/Inputs/thinlto-multi-module.ll
  5. ; RUN: llvm-cat -b -o %t1cat.o %t2.o %t1.o
  6. ; RUN: cp %t1cat.o %t1.o
  7. ; RUN: %clang -target x86_64-unknown-linux-gnu -O2 -o %t3.o -x ir %t1.o -c -fthinlto-index=%t.thinlto.bc
  8. ; RUN: llvm-nm %t3.o | FileCheck --check-prefix=CHECK-OBJ %s
  9. ; CHECK-OBJ: T f1
  10. ; CHECK-OBJ: U f2
  11. target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
  12. target triple = "x86_64-unknown-linux-gnu"
  13. declare void @f2()
  14. define void @f1() {
  15. call void @f2()
  16. ret void
  17. }