Update for change in parameter attribute syntax.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32924 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2007-01-05 18:35:52 +00:00
parent bf8955346a
commit 98ed6963e3

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
}