convert to filecheck style, simplify RUN line, and add comment.
authorChris Lattner <sabre@nondot.org>
Tue, 14 Jul 2009 19:49:11 +0000 (19:49 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 14 Jul 2009 19:49:11 +0000 (19:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75667 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/loop-hoist.ll

index 73284a488edeb308d8cc747968cf41007efa3e7e..4edb0884a6b1ad7ee0293b51e55dbcfb1cd5171c 100644 (file)
@@ -1,10 +1,10 @@
-; RUN: llvm-as < %s | \
-; 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 -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)}
+; LSR should hoist the load from the "Arr" stub out of the loop.
+
+; RUN: llvm-as < %s | llc -relocation-model=dynamic-no-pic -mtriple=i686-apple-darwin8.7.2 | FileCheck %s
+
+; CHECK: _foo:
+; CHECK:    L_Arr$non_lazy_ptr
+; CHECK: LBB1_1:       ## cond_true
 
 @Arr = external global [0 x i32]               ; <[0 x i32]*> [#uses=1]