[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / tools / gold / X86 / thinlto_weak_library.ll
blob3eff4a5d22ee3199b5f651d19973f4864d2d7384
1 ; Test to ensure that ThinLTO sorts the modules before passing to the
2 ; final native link based on the linker's determination of which
3 ; object within a static library contains the prevailing def of a symbol.
5 ; First generate bitcode with a module summary index for each file
6 ; RUN: opt -module-summary %s -o %t.o
7 ; RUN: opt -module-summary %p/Inputs/thinlto_weak_library1.ll -o %t2.o
8 ; RUN: opt -module-summary %p/Inputs/thinlto_weak_library2.ll -o %t3.o
10 ; Although the objects are ordered "%t2.o %t3.o" in the library, the
11 ; linker selects %t3.o first since it satisfies a strong reference from
12 ; %t.o. It later selects %t2.o based on the strong ref from %t3.o.
13 ; Therefore, %t3.o's copy of @f is prevailing, and we need to link
14 ; %t3.o before %t2.o in the final native link.
15 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold%shlibext \
16 ; RUN:    --plugin-opt=thinlto \
17 ; RUN:    --plugin-opt=save-temps \
18 ; RUN:    -m elf_x86_64 \
19 ; RUN:    -o %t4 \
20 ; RUN:    %t.o \
21 ; RUN:    --start-lib %t2.o %t3.o --end-lib
23 ; Make sure we completely dropped the definition of the non-prevailing
24 ; copy of f() (and didn't simply convert to available_externally, which
25 ; would incorrectly enable inlining).
26 ; RUN: llvm-dis %t2.o.1.promote.bc -o - | FileCheck %s
27 ; CHECK: declare dso_local i32 @f()
29 ; ModuleID = 'thinlto_weak_library.c'
30 source_filename = "thinlto_weak_library.c"
31 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
32 target triple = "x86_64-unknown-linux-gnu"
34 ; Function Attrs: nounwind uwtable
35 define i32 @main() local_unnamed_addr {
36 entry:
37   tail call void (...) @test2()
38   ret i32 0
41 declare void @test2(...) local_unnamed_addr