diff options
| -rw-r--r-- | llvm/test/Regression/CodeGen/PowerPC/fma.ll | 2 | ||||
| -rw-r--r-- | llvm/test/Regression/CodeGen/PowerPC/fnabs.ll | 2 | ||||
| -rw-r--r-- | llvm/test/Regression/CodeGen/X86/fabs.ll | 2 | ||||
| -rw-r--r-- | llvm/test/Regression/CodeGen/X86/rotate.ll | 2 | ||||
| -rw-r--r-- | llvm/test/Regression/CodeGen/X86/shift-double.llx | 2 | 
5 files changed, 5 insertions, 5 deletions
diff --git a/llvm/test/Regression/CodeGen/PowerPC/fma.ll b/llvm/test/Regression/CodeGen/PowerPC/fma.ll index 7c39ecf82bf..ed93633f7f6 100644 --- a/llvm/test/Regression/CodeGen/PowerPC/fma.ll +++ b/llvm/test/Regression/CodeGen/PowerPC/fma.ll @@ -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 diff --git a/llvm/test/Regression/CodeGen/PowerPC/fnabs.ll b/llvm/test/Regression/CodeGen/PowerPC/fnabs.ll index e6ec5b3fc6e..af4c2dee385 100644 --- a/llvm/test/Regression/CodeGen/PowerPC/fnabs.ll +++ b/llvm/test/Regression/CodeGen/PowerPC/fnabs.ll @@ -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) diff --git a/llvm/test/Regression/CodeGen/X86/fabs.ll b/llvm/test/Regression/CodeGen/X86/fabs.ll index 5b91948661f..3f16cae707d 100644 --- a/llvm/test/Regression/CodeGen/X86/fabs.ll +++ b/llvm/test/Regression/CodeGen/X86/fabs.ll @@ -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) diff --git a/llvm/test/Regression/CodeGen/X86/rotate.ll b/llvm/test/Regression/CodeGen/X86/rotate.ll index 94da9ad6351..0a06d21d4ad 100644 --- a/llvm/test/Regression/CodeGen/X86/rotate.ll +++ b/llvm/test/Regression/CodeGen/X86/rotate.ll @@ -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 diff --git a/llvm/test/Regression/CodeGen/X86/shift-double.llx b/llvm/test/Regression/CodeGen/X86/shift-double.llx index 1c60ddc547d..5b4dd17dbe1 100644 --- a/llvm/test/Regression/CodeGen/X86/shift-double.llx +++ b/llvm/test/Regression/CodeGen/X86/shift-double.llx @@ -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  | 

