[ARM] Add and adjust saturation tests for upcoming qadd changes. NFC
[llvm-core.git] / test / Linker / comdat-rm-dst.ll
blob9722f365632216cd2aaedd3f1565ef6b9d353334
1 ; RUN: llvm-link -S -o %t %s %p/Inputs/comdat-rm-dst.ll
2 ; RUN: FileCheck %s < %t
3 ; RUN: FileCheck --check-prefix=RM %s < %t
5 target datalayout = "e-m:w-p:32:32-i64:64-f80:32-n8:16:32-S32"
6 target triple = "i686-pc-windows-msvc"
8 $foo = comdat largest
9 @foo = global i32 42, comdat
10 ; CHECK-DAG: @foo = global i64 43, comdat
12 ; RM-NOT: @alias =
13 @alias = alias i32, i32* @foo
15 ; We should arguably reject an out of comdat reference to int_alias. Given that
16 ; the verifier accepts it, test that we at least produce an output that passes
17 ; the verifier.
18 ; CHECK-DAG: @int_alias = external global i32
19 @int_alias = internal alias i32, i32* @foo
20 @bar = global i32* @int_alias
22 @func_alias = alias void (), void ()* @func
23 @zed = global void()* @func_alias
24 ; CHECK-DAG: @zed = global void ()* @func_alias
25 ; CHECK-DAG: declare void @func_alias()
27 ; RM-NOT: @func()
28 define void @func() comdat($foo) {
29   ret void
32 ; RM-NOT: var
33 @var = global i32 42, comdat($foo)