2007-04-25 16:27:10 +02:00
|
|
|
; RUN: llvm-as < %s | llvm-dis > %t1.ll
|
|
|
|
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
|
|
|
|
; RUN: diff %t1.ll %t2.ll
|
|
|
|
|
2013-04-22 16:58:02 +02:00
|
|
|
@llvm.used = appending global [1 x i8*] [i8* bitcast (i32* @foo1 to i8*)], section "llvm.metadata"
|
|
|
|
|
2007-04-25 16:27:10 +02:00
|
|
|
@bar = external global i32
|
|
|
|
@foo1 = alias i32* @bar
|
|
|
|
@foo2 = alias i32* @bar
|
2008-03-22 09:17:17 +01:00
|
|
|
@foo3 = alias i32* @foo2
|
2007-04-25 16:27:10 +02:00
|
|
|
|
|
|
|
%FunTy = type i32()
|
|
|
|
|
|
|
|
declare i32 @foo_f()
|
|
|
|
@bar_f = alias weak %FunTy* @foo_f
|
2008-03-22 09:17:17 +01:00
|
|
|
@bar_ff = alias i32()* @bar_f
|
2007-04-25 16:27:10 +02:00
|
|
|
|
|
|
|
@bar_i = alias internal i32* @bar
|
|
|
|
|
2007-04-28 15:45:00 +02:00
|
|
|
@A = alias bitcast (i32* @bar to i64*)
|
|
|
|
|
2007-04-25 16:27:10 +02:00
|
|
|
define i32 @test() {
|
|
|
|
entry:
|
|
|
|
%tmp = load i32* @foo1
|
|
|
|
%tmp1 = load i32* @foo2
|
|
|
|
%tmp0 = load i32* @bar_i
|
|
|
|
%tmp2 = call i32 @foo_f()
|
|
|
|
%tmp3 = add i32 %tmp, %tmp2
|
|
|
|
%tmp4 = call %FunTy* @bar_f()
|
|
|
|
%tmp5 = add i32 %tmp3, %tmp4
|
|
|
|
%tmp6 = add i32 %tmp1, %tmp5
|
|
|
|
%tmp7 = add i32 %tmp6, %tmp0
|
|
|
|
ret i32 %tmp7
|
|
|
|
}
|