diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-14 19:49:11 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-14 19:49:11 +0000 |
commit | d7fec20cbacd65f3aa159e25ee622f743e7105cd (patch) | |
tree | 1c4114b3627a5115b81341799c72db2d14841310 /llvm/test/CodeGen/X86/loop-hoist.ll | |
parent | cc4613483875034fd127b015743d504794d3dcd3 (diff) | |
download | bcm5719-llvm-d7fec20cbacd65f3aa159e25ee622f743e7105cd.tar.gz bcm5719-llvm-d7fec20cbacd65f3aa159e25ee622f743e7105cd.zip |
convert to filecheck style, simplify RUN line, and add comment.
llvm-svn: 75667
Diffstat (limited to 'llvm/test/CodeGen/X86/loop-hoist.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/loop-hoist.ll | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/llvm/test/CodeGen/X86/loop-hoist.ll b/llvm/test/CodeGen/X86/loop-hoist.ll index 73284a488ed..4edb0884a6b 100644 --- a/llvm/test/CodeGen/X86/loop-hoist.ll +++ b/llvm/test/CodeGen/X86/loop-hoist.ll @@ -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] |