diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-01-05 18:35:52 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-01-05 18:35:52 +0000 |
commit | 98ed6963e366bc2afbad936e23a10fe95508e240 (patch) | |
tree | 537484581926e05a416676622a02fcb5f417a66c /test/CodeGen/X86 | |
parent | bf8955346a0258181daa9fd3d0231409c4efa77e (diff) | |
download | external_llvm-98ed6963e366bc2afbad936e23a10fe95508e240.zip external_llvm-98ed6963e366bc2afbad936e23a10fe95508e240.tar.gz external_llvm-98ed6963e366bc2afbad936e23a10fe95508e240.tar.bz2 |
Update for change in parameter attribute syntax.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32924 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86')
-rw-r--r-- | test/CodeGen/X86/trunc-to-bool.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/trunc-to-bool.ll b/test/CodeGen/X86/trunc-to-bool.ll index f4fa9c6..e9c18c5 100644 --- a/test/CodeGen/X86/trunc-to-bool.ll +++ b/test/CodeGen/X86/trunc-to-bool.ll @@ -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 } |