diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2017-01-27 01:32:26 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2017-01-27 01:32:26 +0000 |
commit | baabda9317d4a0f51805d41455da36d8c04de342 (patch) | |
tree | 298759b5b760e12b48dc6a117dff87095d523394 /llvm/test/Transforms/LoopLoadElim/forward.ll | |
parent | 89dbea06f13d769050337586c98ac2c33d303694 (diff) | |
download | bcm5719-llvm-baabda9317d4a0f51805d41455da36d8c04de342.tar.gz bcm5719-llvm-baabda9317d4a0f51805d41455da36d8c04de342.zip |
[PM] Port LoopLoadElimination to the new pass manager and wire it into
the main pipeline.
This is a very straight forward port. Nothing weird or surprising.
This brings the number of missing passes from the new PM's pipeline down
to three.
llvm-svn: 293249
Diffstat (limited to 'llvm/test/Transforms/LoopLoadElim/forward.ll')
-rw-r--r-- | llvm/test/Transforms/LoopLoadElim/forward.ll | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/test/Transforms/LoopLoadElim/forward.ll b/llvm/test/Transforms/LoopLoadElim/forward.ll index 9a0e03a317c..0b270cab3ed 100644 --- a/llvm/test/Transforms/LoopLoadElim/forward.ll +++ b/llvm/test/Transforms/LoopLoadElim/forward.ll @@ -1,4 +1,5 @@ ; RUN: opt -loop-load-elim -S < %s | FileCheck %s +; RUN: opt -passes=loop-load-elim -S < %s | FileCheck %s ; Simple st->ld forwarding derived from a lexical forward dep. ; |