diff options
| author | Peter Collingbourne <peter@pcc.me.uk> | 2017-01-26 21:09:48 +0000 |
|---|---|---|
| committer | Peter Collingbourne <peter@pcc.me.uk> | 2017-01-26 21:09:48 +0000 |
| commit | f5d1712189a2c4858425cf35f8ed597645af48cc (patch) | |
| tree | ff87e9d9438847c52bc177735616403d29ca9c1d /clang/test/CodeGen | |
| parent | b0d96d327e09d0ac13b34078e7413709f4815b2d (diff) | |
| download | bcm5719-llvm-f5d1712189a2c4858425cf35f8ed597645af48cc.tar.gz bcm5719-llvm-f5d1712189a2c4858425cf35f8ed597645af48cc.zip | |
IRGen: When loading the main module in the distributed ThinLTO backend, look for the module containing the summary.
Differential Revision: https://reviews.llvm.org/D29067
llvm-svn: 293209
Diffstat (limited to 'clang/test/CodeGen')
| -rw-r--r-- | clang/test/CodeGen/thinlto-multi-module.ll | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/clang/test/CodeGen/thinlto-multi-module.ll b/clang/test/CodeGen/thinlto-multi-module.ll new file mode 100644 index 00000000000..072c47379b4 --- /dev/null +++ b/clang/test/CodeGen/thinlto-multi-module.ll @@ -0,0 +1,20 @@ +; RUN: opt -module-summary -o %t1.o %s +; RUN: llvm-lto -thinlto -o %t %t1.o + +; RUN: opt -o %t2.o %S/Inputs/thinlto_backend.ll +; RUN: llvm-cat -b -o %t1cat.o %t1.o %t2.o +; RUN: cp %t1cat.o %t1.o +; RUN: %clang -target x86_64-unknown-linux-gnu -O2 -o %t3.o -x ir %t1.o -c -fthinlto-index=%t.thinlto.bc +; RUN: llvm-nm %t3.o | FileCheck --check-prefix=CHECK-OBJ %s +; CHECK-OBJ: T f1 +; CHECK-OBJ: U f2 + +target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-unknown-linux-gnu" + +declare void @f2() + +define void @f1() { + call void @f2() + ret void +} |

