diff options
Diffstat (limited to 'test/Bitcode/thinlto-summary-section.ll')
-rw-r--r-- | test/Bitcode/thinlto-summary-section.ll | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/Bitcode/thinlto-summary-section.ll b/test/Bitcode/thinlto-summary-section.ll new file mode 100644 index 0000000000000..d120622db8197 --- /dev/null +++ b/test/Bitcode/thinlto-summary-section.ll @@ -0,0 +1,11 @@ +; Check the linkage types in both the per-module and combined summaries. +; RUN: opt -module-summary %s -o %t.o +; RUN: llvm-bcanalyzer -dump %t.o | FileCheck %s +; RUN: llvm-lto -thinlto -o %t2 %t.o +; RUN: llvm-bcanalyzer -dump %t2.thinlto.bc | FileCheck %s --check-prefix=COMBINED + +; CHECK: <PERMODULE {{.*}} op1=16 +; COMBINED-DAG: <COMBINED {{.*}} op2=16 +define void @functionWithSection() section "some_section" { + ret void +} |