[llvm-commits] [llvm] r42302 - /llvm/trunk/test/CodeGen/X86/2006-11-17-IllegalMove.ll

Evan Cheng evan.cheng at apple.com
Tue Sep 25 10:47:38 PDT 2007


Author: evancheng
Date: Tue Sep 25 12:47:38 2007
New Revision: 42302

URL: http://llvm.org/viewvc/llvm-project?rev=42302&view=rev
Log:
Forgot to check in the changes. Fix test case so it doesn't break with any scheduling changes.

Modified:
    llvm/trunk/test/CodeGen/X86/2006-11-17-IllegalMove.ll

Modified: llvm/trunk/test/CodeGen/X86/2006-11-17-IllegalMove.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/2006-11-17-IllegalMove.ll?rev=42302&r1=42301&r2=42302&view=diff

==============================================================================
--- llvm/trunk/test/CodeGen/X86/2006-11-17-IllegalMove.ll (original)
+++ llvm/trunk/test/CodeGen/X86/2006-11-17-IllegalMove.ll Tue Sep 25 12:47:38 2007
@@ -1,7 +1,7 @@
 ; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86-64 | \
-; RUN:   not grep {movb	%sil, %ah}
+; RUN:   grep movb | count 2
 ; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86-64 | \
-; RUN:   grep {movzbw	%al, %ax}
+; RUN:   grep movzbw
 
 void %handle_vector_size_attribute() {
 entry:





More information about the llvm-commits mailing list