You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
; 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)
|