Update dejagnu tests to use the new pattern isel flag
authorNate Begeman <natebegeman@mac.com>
Sat, 16 Apr 2005 04:25:48 +0000 (04:25 +0000)
committerNate Begeman <natebegeman@mac.com>
Sat, 16 Apr 2005 04:25:48 +0000 (04:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21311 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/PowerPC/fma.ll
test/CodeGen/PowerPC/fnabs.ll
test/CodeGen/X86/fabs.ll
test/CodeGen/X86/rotate.ll
test/CodeGen/X86/shift-double.llx

index 7c39ecf82bf461e060b08382939bb06c819e64a4..ed93633f7f61723f94a39a391b0e7eeb7f255f1b 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llc -march=ppc32 -enable-ppc-pattern-isel | grep 'fn\?madd\|fn\?msub' | wc -l | grep 7
+; RUN: llvm-as < %s | llc -march=ppc32 | grep 'fn\?madd\|fn\?msub' | wc -l | grep 7
 
 double %test_FMADD1(double %A, double %B, double %C) {
        %D = mul double %A, %B
index e6ec5b3fc6e145695e3df338defc38914c397489..af4c2dee385efcb4a01942a48521b0ba36300ea2 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llc -march=ppc32 -enable-ppc-pattern-isel | grep fnabs
+; RUN: llvm-as < %s | llc -march=ppc32 | grep fnabs
 
 declare double %fabs(double)
 
index 5b91948661f673d2b9598e11ba60c5c0e4987676..3f16cae707d7bcedf3c8709431e6b92999014a1b 100644 (file)
@@ -1,5 +1,5 @@
 ; Make sure this testcase codegens to the fabs instruction, not a call to fabsf
-; RUN: llvm-as < %s | llc -march=x86 -disable-pattern-isel=0 | grep 'fabs$' | wc -l | grep 2
+; RUN: llvm-as < %s | llc -march=x86 -enable-pattern-isel=1 | grep 'fabs$' | wc -l | grep 2
 
 declare float %fabsf(float)
 
index 94da9ad635149719ce01fd9b693b7b023f0569cc..0a06d21d4ad77417f93eca1e9edb34a00680ae5a 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel -disable-pattern-isel=0 | grep ro[rl] | wc -l | grep 12
+; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel -enable-pattern-isel=1 | grep ro[rl] | wc -l | grep 12
 
 uint %rotl32(uint %A, ubyte %Amt) {
        %B = shl uint %A, ubyte %Amt
index 1c60ddc547d432f74cd4d1ba5551823bf2444cf0..5b4dd17dbe1f8f7b0bce5791397169ed77243888 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel -disable-pattern-isel=0 | grep sh[lr]d | wc -l | grep 5
+; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel -enable-pattern-isel=1 | grep sh[lr]d | wc -l | grep 5
 
 long %test1(long %X, ubyte %C) {
        %Y = shl long %X, ubyte %C