Allow constant folding of ceil function whenever feasible
[oota-llvm.git] / test / Feature / aliases.ll
1 ; RUN: llvm-as < %s | llvm-dis > %t1.ll
2 ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3 ; RUN: diff %t1.ll %t2.ll
4
5 @llvm.used = appending global [1 x i8*] [i8* bitcast (i32* @foo1 to i8*)], section "llvm.metadata"
6
7 @bar = global i32 0
8 @foo1 = alias i32* @bar
9 @foo2 = alias i32* @bar
10 @foo3 = alias i32* @foo2
11
12 %FunTy = type i32()
13
14 define i32 @foo_f() {
15   ret i32 0
16 }
17 @bar_f = alias weak %FunTy* @foo_f
18 @bar_ff = alias i32()* @bar_f
19
20 @bar_i = alias internal i32* @bar
21
22 @A = alias bitcast (i32* @bar to i64*)
23
24 define i32 @test() {
25 entry:
26    %tmp = load i32* @foo1
27    %tmp1 = load i32* @foo2
28    %tmp0 = load i32* @bar_i
29    %tmp2 = call i32 @foo_f()
30    %tmp3 = add i32 %tmp, %tmp2
31    %tmp4 = call %FunTy* @bar_f()
32    %tmp5 = add i32 %tmp3, %tmp4
33    %tmp6 = add i32 %tmp1, %tmp5
34    %tmp7 = add i32 %tmp6, %tmp0
35    ret i32 %tmp7
36 }