[llvm-commits] [llvm] r62363 - /llvm/trunk/test/CodeGen/X86/loop-hoist.ll

Dan Gohman gohman at apple.com
Fri Jan 16 13:40:12 PST 2009


Author: djg
Date: Fri Jan 16 15:40:12 2009
New Revision: 62363

URL: http://llvm.org/viewvc/llvm-project?rev=62363&view=rev
Log:
Disable the post-RA scheduler on this test, since it uses a
simple %prcontext which doesn't find what it's looking for
if the scheduler has rearranged the instructions.

Modified:
    llvm/trunk/test/CodeGen/X86/loop-hoist.ll

Modified: llvm/trunk/test/CodeGen/X86/loop-hoist.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/loop-hoist.ll?rev=62363&r1=62362&r2=62363&view=diff

==============================================================================
--- llvm/trunk/test/CodeGen/X86/loop-hoist.ll (original)
+++ llvm/trunk/test/CodeGen/X86/loop-hoist.ll Fri Jan 16 15:40:12 2009
@@ -2,7 +2,8 @@
 ; RUN:   llc -relocation-model=dynamic-no-pic -mtriple=i686-apple-darwin8.7.2 |\
 ; RUN:   grep L_Arr.non_lazy_ptr
 ; RUN: llvm-as < %s | \
-; RUN:   llc -relocation-model=dynamic-no-pic -mtriple=i686-apple-darwin8.7.2 |\
+; RUN:   llc -disable-post-RA-scheduler=true \
+; RUN:       -relocation-model=dynamic-no-pic -mtriple=i686-apple-darwin8.7.2 |\
 ; RUN:   %prcontext L_Arr.non_lazy_ptr 1 | grep {4(%esp)}
 
 @Arr = external global [0 x i32]		; <[0 x i32]*> [#uses=1]





More information about the llvm-commits mailing list