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 | 6f202a7ced0794a944ed64d24906347b899b426e (patch) | |
| tree | 8e0c22195d439b1c37225ca909b2a3894dc8a035 /llvm/test | |
| parent | a61516d324c3eee30701a977d271b59a30009e6c (diff) | |
| download | bcm5719-llvm-6f202a7ced0794a944ed64d24906347b899b426e.tar.gz bcm5719-llvm-6f202a7ced0794a944ed64d24906347b899b426e.zip | |
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. =/
llvm-svn: 153801
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/Transforms/Inline/alloca-bonus.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/Transforms/Inline/alloca-bonus.ll b/llvm/test/Transforms/Inline/alloca-bonus.ll index fb4062f7083..90fa1923c6d 100644 --- a/llvm/test/Transforms/Inline/alloca-bonus.ll +++ b/llvm/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 |

