diff options
| author | Dan Gohman <gohman@apple.com> | 2009-09-16 16:33:59 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2009-09-16 16:33:59 +0000 |
| commit | 77b713700c3d57b01ec3463dd873f546905a9f3c (patch) | |
| tree | 7b34396080f68796f4e5c577f3e58ed612cc2046 | |
| parent | e680e23e781542c39ba1501bee713dd3bf64ad09 (diff) | |
| download | external_llvm-77b713700c3d57b01ec3463dd873f546905a9f3c.zip external_llvm-77b713700c3d57b01ec3463dd873f546905a9f3c.tar.gz external_llvm-77b713700c3d57b01ec3463dd873f546905a9f3c.tar.bz2 | |
Fix the comment in this test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82051 91177308-0d34-0410-b5e6-96231b3b80d8
| -rw-r--r-- | test/Transforms/InstCombine/phi-merge-gep.ll | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Transforms/InstCombine/phi-merge-gep.ll b/test/Transforms/InstCombine/phi-merge-gep.ll index 73c770e..2671749 100644 --- a/test/Transforms/InstCombine/phi-merge-gep.ll +++ b/test/Transforms/InstCombine/phi-merge-gep.ll @@ -2,7 +2,8 @@ ; RUN: grep {= getelementptr} %t | count 20 ; RUN: grep {= phi} %t | count 13 -; Don't push the geps through these phis; they have multiple uses! +; Don't push the geps through these phis, because they would require +; two phis each, which burdens the loop with high register pressure. define void @foo(float* %Ar, float* %Ai, i64 %As, float* %Cr, float* %Ci, i64 %Cs, i64 %n) nounwind { entry: |
