aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-09-07 22:48:30 +0000
committerChris Lattner <sabre@nondot.org>2002-09-07 22:48:30 +0000
commit92bab8391353af414189995d5219d88b0bea31ff (patch)
treee6cc2bf33406bdf69d778e4049e1b4af6e6b8be4
parent482004cb34e6a656719664c9527ef6814a006422 (diff)
Fix broken test
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3613 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Analysis/BasicAA/licmtest.ll6
-rw-r--r--test/Transforms/BasicAA/licmtest.ll6
2 files changed, 6 insertions, 6 deletions
diff --git a/test/Analysis/BasicAA/licmtest.ll b/test/Analysis/BasicAA/licmtest.ll
index 92f58e8b33..60deccdf4d 100644
--- a/test/Analysis/BasicAA/licmtest.ll
+++ b/test/Analysis/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:
diff --git a/test/Transforms/BasicAA/licmtest.ll b/test/Transforms/BasicAA/licmtest.ll
index 92f58e8b33..60deccdf4d 100644
--- a/test/Transforms/BasicAA/licmtest.ll
+++ b/test/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: