diff options
author | Evan Cheng <evan.cheng@apple.com> | 2010-09-17 22:28:18 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2010-09-17 22:28:18 +0000 |
commit | 6edb0eac87a6e46b89de3ad5d8e39c41969e2a54 (patch) | |
tree | cb059ec2c353669ef07a8b6bb55ae6874688bdb5 /test/CodeGen/X86/pr3522.ll | |
parent | a5b1e6810769bef9a1fd98c69877bdfd75d7b106 (diff) |
Teach machine sink to
1) Do forward copy propagation. This makes it easier to estimate the cost of the
instruction being sunk.
2) Break critical edges on demand, including cases where the value is used by
PHI nodes.
Critical edge splitting is not yet enabled by default.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114227 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/pr3522.ll')
-rw-r--r-- | test/CodeGen/X86/pr3522.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/pr3522.ll b/test/CodeGen/X86/pr3522.ll index 7cdeaa0992..da1623721d 100644 --- a/test/CodeGen/X86/pr3522.ll +++ b/test/CodeGen/X86/pr3522.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -march=x86 -stats |& not grep machine-sink +; RUN: llc < %s -march=x86 -stats |& not grep {instructions sunk} ; PR3522 target triple = "i386-pc-linux-gnu" |