summaryrefslogtreecommitdiff
path: root/test/Assembler/2007-07-19-ParamAttrAmbiguity.ll
blob: 9c7daa841ab892b0194cc41348333afeefe43fe5 (plain)
1
2
3
4
5
6
7
8
9
; PR1553
; RUN: llvm-as < %s > /dev/null
define void @bar() {
        %t = call i8 @foo( i8 10 )
        zext i8 %t to i32
        ret void
}

declare i8 @foo(i8)