Fix broken test

llvm-svn: 3613
diff --git a/llvm/test/Regression/Transforms/BasicAA/licmtest.ll b/llvm/test/Regression/Transforms/BasicAA/licmtest.ll
index 92f58e8..60deccd 100644
--- a/llvm/test/Regression/Transforms/BasicAA/licmtest.ll
+++ b/llvm/test/Regression/Transforms/BasicAA/licmtest.ll
@@ -14,11 +14,11 @@
 implementation
 
 int %test(bool %c) {
-	%Atmp = load int* %A
+	%ToRemove = load int* %A
 	br label %Loop
 Loop:
-	%ToRemove = load int* %A
-	store int %ToRemove, int* %B  ; Store cannot alias %A
+	%Atmp = load int* %A
+	store int %Atmp, int* %B  ; Store cannot alias %A
 
 	br bool %c, label %Out, label %Loop
 Out: