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