mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
Alter these tests to ensure they match a "test $1, X" X86 instruction that
is now generated by the LLVM backend for "trunc to bool" instructions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31935 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
df2a4ff7d4
commit
e16746d92d
@ -1,5 +1,5 @@
|
||||
// RUN: %llvmgcc -S %s -o - | grep 'trunc.*to bool'
|
||||
// RUN: %llvmgcc -S %s -o - | llvm-as | llc -march=x86 | grep and
|
||||
// RUN: %llvmgcc -S %s -o - | llvm-as | llc -march=x86 | grep 'test.*1'
|
||||
int
|
||||
main ( int argc, char** argv)
|
||||
{
|
||||
|
@ -2,7 +2,7 @@
|
||||
; sure only the LSBit survives. Test that this is the case both for a returned
|
||||
; value and as the operand of a branch.
|
||||
; RUN: llvm-as < %s | llc -march=x86 &&
|
||||
; RUN: llvm-as < %s | llc -march=x86 | grep '\(and\)\|\(test.*1\)' | wc -l | grep 3
|
||||
; RUN: llvm-as < %s | llc -march=x86 | grep '\(and\)\|\(test.*\$1\)' | wc -l | grep 3
|
||||
bool %test1(int %X) {
|
||||
%Y = trunc int %X to bool
|
||||
ret bool %Y
|
||||
|
Loading…
Reference in New Issue
Block a user