[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / tools / gold / X86 / start-lib-common.ll
blob209a556de21201a71bc3550d138a0bf45db56639
1 ; Test the case when the preferred (larger / more aligned) version of a common
2 ; symbol is located in a module that's not included in the link.
4 ; RUN: llvm-as %s -o %t1.o
5 ; RUN: llvm-as %p/Inputs/start-lib-common.ll -o %t2.o
7 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold%shlibext \
8 ; RUN:    --plugin-opt=emit-llvm \
9 ; RUN:    -shared %t1.o --start-lib %t2.o --end-lib -o %t3.o
10 ; RUN: llvm-dis %t3.o -o - | FileCheck %s
12 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
13 @x = common global i32 0, align 4
15 ; ToT gold (as of 03/2016) honors --start-lib/--end-lib, drops %t2.o and ends up
16 ; with (i32 align 4) symbol.
17 ; Older gold does not drop %t2.o and ends up with (i32 align 8) symbol. This is
18 ; incorrect behavior, but this test does not verify this in order to support
19 ; both old and new gold.
21 ; Check that the common symbol is not dropped completely, which was a regression
22 ; in r262676.
23 ; CHECK: @x = common global i32 0, align