[llvm-commits] CVS: llvm/test/Regression/CodeGen/X86/2005-01-17-CycleInDAG.ll fabs.ll regpressure.ll rotate.ll shift-double.llx
Chris Lattner
lattner at cs.uiuc.edu
Thu Aug 18 18:14:51 PDT 2005
Changes in directory llvm/test/Regression/CodeGen/X86:
2005-01-17-CycleInDAG.ll updated: 1.1 -> 1.2
fabs.ll updated: 1.4 -> 1.5
regpressure.ll updated: 1.2 -> 1.3
rotate.ll updated: 1.2 -> 1.3
shift-double.llx updated: 1.5 -> 1.6
---
Log message:
remove dead flags
---
Diffs of the changes: (+5 -5)
2005-01-17-CycleInDAG.ll | 2 +-
fabs.ll | 2 +-
regpressure.ll | 2 +-
rotate.ll | 2 +-
shift-double.llx | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
Index: llvm/test/Regression/CodeGen/X86/2005-01-17-CycleInDAG.ll
diff -u llvm/test/Regression/CodeGen/X86/2005-01-17-CycleInDAG.ll:1.1 llvm/test/Regression/CodeGen/X86/2005-01-17-CycleInDAG.ll:1.2
--- llvm/test/Regression/CodeGen/X86/2005-01-17-CycleInDAG.ll:1.1 Mon Jan 17 00:25:59 2005
+++ llvm/test/Regression/CodeGen/X86/2005-01-17-CycleInDAG.ll Thu Aug 18 20:14:40 2005
@@ -3,7 +3,7 @@
; is invalid code (there is no correct way to order the instruction). Check
; that we do not fold the load into the sub.
-; RUN: llvm-as < %s | llc -march=x86 -disable-pattern-isel=0 | not grep 'sub.*GLOBAL'
+; RUN: llvm-as < %s | llc -march=x86 | not grep 'sub.*GLOBAL'
%GLOBAL = external global int
Index: llvm/test/Regression/CodeGen/X86/fabs.ll
diff -u llvm/test/Regression/CodeGen/X86/fabs.ll:1.4 llvm/test/Regression/CodeGen/X86/fabs.ll:1.5
--- llvm/test/Regression/CodeGen/X86/fabs.ll:1.4 Fri Apr 15 23:25:48 2005
+++ llvm/test/Regression/CodeGen/X86/fabs.ll Thu Aug 18 20:14:40 2005
@@ -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 -enable-pattern-isel=1 | grep 'fabs$' | wc -l | grep 2
+; RUN: llvm-as < %s | llc -march=x86 | grep 'fabs$' | wc -l | grep 2
declare float %fabsf(float)
Index: llvm/test/Regression/CodeGen/X86/regpressure.ll
diff -u llvm/test/Regression/CodeGen/X86/regpressure.ll:1.2 llvm/test/Regression/CodeGen/X86/regpressure.ll:1.3
--- llvm/test/Regression/CodeGen/X86/regpressure.ll:1.2 Mon Jan 17 17:16:01 2005
+++ llvm/test/Regression/CodeGen/X86/regpressure.ll Thu Aug 18 20:14:40 2005
@@ -1,7 +1,7 @@
;; Both functions in this testcase should codegen to the same function, and
;; neither of them should require spilling anything to the stack.
-; RUN: llvm-as < %s | llc -march=x86 -disable-pattern-isel=0 -stats 2>&1 | not grep 'Number of register spills'
+; RUN: llvm-as < %s | llc -march=x86 -stats 2>&1 | not grep 'Number of register spills'
;; This can be compiled to use three registers if the loads are not
;; folded into the multiplies, 2 registers otherwise.
Index: llvm/test/Regression/CodeGen/X86/rotate.ll
diff -u llvm/test/Regression/CodeGen/X86/rotate.ll:1.2 llvm/test/Regression/CodeGen/X86/rotate.ll:1.3
--- llvm/test/Regression/CodeGen/X86/rotate.ll:1.2 Fri Apr 15 23:25:48 2005
+++ llvm/test/Regression/CodeGen/X86/rotate.ll Thu Aug 18 20:14:40 2005
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel -enable-pattern-isel=1 | grep ro[rl] | wc -l | grep 12
+; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel | grep ro[rl] | wc -l | grep 12
uint %rotl32(uint %A, ubyte %Amt) {
%B = shl uint %A, ubyte %Amt
Index: llvm/test/Regression/CodeGen/X86/shift-double.llx
diff -u llvm/test/Regression/CodeGen/X86/shift-double.llx:1.5 llvm/test/Regression/CodeGen/X86/shift-double.llx:1.6
--- llvm/test/Regression/CodeGen/X86/shift-double.llx:1.5 Fri Apr 15 23:25:48 2005
+++ llvm/test/Regression/CodeGen/X86/shift-double.llx Thu Aug 18 20:14:40 2005
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel -enable-pattern-isel=1 | grep sh[lr]d | wc -l | grep 5
+; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel grep sh[lr]d | wc -l | grep 5
long %test1(long %X, ubyte %C) {
%Y = shl long %X, ubyte %C
More information about the llvm-commits
mailing list