blob: df0232c68110064d035caed5135c3f92c5206d98 [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
5%FunTy = type i32(i8 @zext)
6
7declare i16 @(sext) "test"(i16 @sext %arg) ; Differ only by vararg
8declare i16 "test2" (i16 %a1, i16 %a2)
9
10implementation
11
12define i32 %main(i32 %argc, i8 **%argv) {
13 %val = trunc i32 %argc to i16
14 %res = call i16 @sext (i16 @sext) *%test(i16 %val)
15 %two = add i16 %res, %res
16 %retVal = sext i16 %two to i32
17 ret i32 %retVal
18}