Update for change in parameter attribute syntax.

llvm-svn: 32924
This commit is contained in:
Reid Spencer 2007-01-05 18:35:52 +00:00
parent adabc4b5b8
commit b4d32e8bcd
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
; RUN: llvm-as < %s | llc -march=x86 | grep '\(and\)\|\(test.*\$1\)' | \
; RUN: wc -l | grep 6
define bool @zext %test1(i32 %X) {
define bool %test1(i32 %X) zext {
%Y = trunc i32 %X to bool
ret bool %Y
}