Add a test case to test parameter attributes feature.
[oota-llvm.git] / test / Feature / paramattrs.ll
1 ; 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
7 declare i16 @(sext) "test"(i16 @sext %arg)      ; Differ only by vararg
8 declare i16 "test2" (i16 %a1, i16 %a2)
9
10 implementation
11
12 define 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 }