blob: 0926f137e3fca7f4603820f3737daf526f912d4e [file] [log] [blame]
Reid Spencer5f1397d2007-01-03 23:54:02 +00001; 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
Reid Spencer2fd6c652007-01-05 17:26:04 +00005%ZFunTy = type i32(i8 zext)
6%SFunTy = type i32(i8 sext)
Reid Spencer5f1397d2007-01-03 23:54:02 +00007
Reid Spencere3ff5ad2007-01-26 08:25:06 +00008declare i16 @"test"(i16 sext %arg) sext
9declare i8 @"test2" (i16 zext %a2) zext
Reid Spencer5f1397d2007-01-03 23:54:02 +000010
11implementation
12
Reid Spencere3ff5ad2007-01-26 08:25:06 +000013define i32 @main(i32 %argc, i8 **%argv) {
Reid Spencer5f1397d2007-01-03 23:54:02 +000014 %val = trunc i32 %argc to i16
Reid Spencer90850432007-01-30 16:16:01 +000015 %res1 = call i16 (i16 sext) sext *@test(i16 %val)
16 %two = add i16 %res1, %res1
17 %res2 = call i8 @test2(i16 %two zext) zext
Reid Spencer5f1397d2007-01-03 23:54:02 +000018 %retVal = sext i16 %two to i32
19 ret i32 %retVal
20}