[llvm-commits] [llvm] r153801 - /llvm/trunk/test/Transforms/Inline/alloca-bonus.ll
Chandler Carruth
chandlerc at gmail.com
Sat Mar 31 03:38:48 PDT 2012
Author: chandlerc
Date: Sat Mar 31 05:38:48 2012
New Revision: 153801
URL: http://llvm.org/viewvc/llvm-project?rev=153801&view=rev
Log:
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. =/
Modified:
llvm/trunk/test/Transforms/Inline/alloca-bonus.ll
Modified: llvm/trunk/test/Transforms/Inline/alloca-bonus.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/Inline/alloca-bonus.ll?rev=153801&r1=153800&r2=153801&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/Inline/alloca-bonus.ll (original)
+++ llvm/trunk/test/Transforms/Inline/alloca-bonus.ll Sat Mar 31 05:38:48 2012
@@ -90,12 +90,12 @@
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
More information about the llvm-commits
mailing list