diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-03-31 10:38:48 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-03-31 10:38:48 +0000 |
commit | 426d5715b1fffad145da60dd71cd4f41e20d04b1 (patch) | |
tree | 70c2dadda50cdd4a0f0b17156ab58c8a54918e98 /test/Transforms/Inline | |
parent | c3e955927ff4d4ec17a0d9899a175f62b6c57780 (diff) | |
download | external_llvm-426d5715b1fffad145da60dd71cd4f41e20d04b1.zip external_llvm-426d5715b1fffad145da60dd71cd4f41e20d04b1.tar.gz external_llvm-426d5715b1fffad145da60dd71cd4f41e20d04b1.tar.bz2 |
Clean up the naming in this test. Someone pointed this out in review at
one point, and I forgot to go back and clean it up. Sorry about that. =/
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153801 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/Inline')
-rw-r--r-- | test/Transforms/Inline/alloca-bonus.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Transforms/Inline/alloca-bonus.ll b/test/Transforms/Inline/alloca-bonus.ll index fb4062f..90fa192 100644 --- a/test/Transforms/Inline/alloca-bonus.ll +++ b/test/Transforms/Inline/alloca-bonus.ll @@ -90,12 +90,12 @@ define void @outer4(i32 %A) { ret void } -; %D poisons this call, scalar-repl can't handle that instruction. However, we +; %B poisons this call, scalar-repl can't handle that instruction. However, we ; still want to detect that the icmp and branch *can* be handled. define void @inner4(i32 *%ptr, i32 %A) { %B = getelementptr i32* %ptr, i32 %A - %E = icmp eq i32* %ptr, null - br i1 %E, label %bb.true, label %bb.false + %C = icmp eq i32* %ptr, null + br i1 %C, label %bb.true, label %bb.false bb.true: ; This block musn't be counted in the inline cost. %t1 = load i32* %ptr |