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

declare i8 @foo(i8)