2007-01-03 23:54:02 +00: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
|
|
|
|
|
2011-06-17 17:37:13 +00:00
|
|
|
%ZFunTy = type i32(i8)
|
|
|
|
%SFunTy = type i32(i8)
|
2007-01-03 23:54:02 +00:00
|
|
|
|
2011-06-17 03:14:27 +00:00
|
|
|
declare signext i16 @"test"(i16 signext %arg)
|
|
|
|
declare zeroext i8 @"test2" (i16 zeroext %a2)
|
2007-01-03 23:54:02 +00:00
|
|
|
|
2007-06-05 05:28:26 +00:00
|
|
|
declare i32 @"test3"(i32* noalias %p)
|
|
|
|
|
2007-03-22 02:15:17 +00:00
|
|
|
declare void @exit(i32) noreturn nounwind
|
2007-01-03 23:54:02 +00:00
|
|
|
|
2007-07-19 23:13:04 +00:00
|
|
|
define i32 @main(i32 inreg %argc, i8 ** inreg %argv) nounwind {
|
2007-01-03 23:54:02 +00:00
|
|
|
%val = trunc i32 %argc to i16
|
2011-06-17 17:37:13 +00:00
|
|
|
%res1 = call signext i16 (i16 ) *@test(i16 signext %val)
|
2007-01-30 16:16:01 +00:00
|
|
|
%two = add i16 %res1, %res1
|
2011-06-17 03:14:27 +00:00
|
|
|
%res2 = call zeroext i8 @test2(i16 zeroext %two )
|
2007-01-03 23:54:02 +00:00
|
|
|
%retVal = sext i16 %two to i32
|
|
|
|
ret i32 %retVal
|
|
|
|
}
|
2011-06-15 20:36:13 +00:00
|
|
|
|
|
|
|
declare void @function_to_resolve_eagerly() nonlazybind
|