remove dead flags
authorChris Lattner <sabre@nondot.org>
Fri, 19 Aug 2005 01:14:40 +0000 (01:14 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 19 Aug 2005 01:14:40 +0000 (01:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22898 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/2005-01-17-CycleInDAG.ll
test/CodeGen/X86/fabs.ll
test/CodeGen/X86/regpressure.ll
test/CodeGen/X86/rotate.ll
test/CodeGen/X86/shift-double.llx

index fdfed6cf41d4894e3e8df226db6b70111e29b2ab..6925bb01a4c8939ed6407619064932a99269cd81 100644 (file)
@@ -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 3f16cae707d7bcedf3c8709431e6b92999014a1b..b304cd4c3fdaaf4fb8449f9bd17dc9cfb008aca1 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 -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 1ba381d30eea3183af67dbbf690877f74d9fc1c7..1615f81a924548c4d36c6148b0feb425357e4ad9 100644 (file)
@@ -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 0a06d21d4ad77417f93eca1e9edb34a00680ae5a..59d0291c3e1960c02b28270e84ffe955927d5be6 100644 (file)
@@ -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 5b4dd17dbe1f8f7b0bce5791397169ed77243888..8e11a30ead8d7132c58a2275f886b784589f2b24 100644 (file)
@@ -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