[llvm-commits] [llvm] r66179 - /llvm/trunk/test/CodeGen/X86/lsr-negative-stride.ll
Dan Gohman
gohman at apple.com
Thu Mar 5 11:31:32 PST 2009
Author: djg
Date: Thu Mar 5 13:31:32 2009
New Revision: 66179
URL: http://llvm.org/viewvc/llvm-project?rev=66179&view=rev
Log:
Make this test more thorough. Not only should there be no %esi,
there should be no spilling of anything.
Modified:
llvm/trunk/test/CodeGen/X86/lsr-negative-stride.ll
Modified: llvm/trunk/test/CodeGen/X86/lsr-negative-stride.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/lsr-negative-stride.ll?rev=66179&r1=66178&r2=66179&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/lsr-negative-stride.ll (original)
+++ llvm/trunk/test/CodeGen/X86/lsr-negative-stride.ll Thu Mar 5 13:31:32 2009
@@ -1,6 +1,8 @@
-; RUN: llvm-as < %s | llc -march=x86 | not grep neg
-; RUN: llvm-as < %s | llc -march=x86 | not grep sub.*esp
-; RUN: llvm-as < %s | llc -march=x86 | not grep esi
+; RUN: llvm-as < %s | llc -march=x86 > %t
+; RUN: not grep neg %t
+; RUN: not grep sub.*esp %t
+; RUN: not grep esi %t
+; RUN: not grep push %t
; This corresponds to:
;int t(int a, int b) {
More information about the llvm-commits
mailing list