summaryrefslogtreecommitdiff
path: root/test/Analysis
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-02-24 20:30:14 +0000
committerChris Lattner <sabre@nondot.org>2003-02-24 20:30:14 +0000
commit4944d8dbc8293fb8d11c4bb908fb73e0294549be (patch)
tree77a542ec8dfac110ccd26a82091d721c03398fde /test/Analysis
parent22a3b5540652dd520c1d36fc3fb1d0e64175a24e (diff)
downloadllvm-4944d8dbc8293fb8d11c4bb908fb73e0294549be.tar.gz
llvm-4944d8dbc8293fb8d11c4bb908fb73e0294549be.tar.bz2
llvm-4944d8dbc8293fb8d11c4bb908fb73e0294549be.tar.xz
Fix test
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5617 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Analysis')
-rw-r--r--test/Analysis/DSGraph/gcsetest.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Analysis/DSGraph/gcsetest.ll b/test/Analysis/DSGraph/gcsetest.ll
index f6d4b57b53..14a07bf87b 100644
--- a/test/Analysis/DSGraph/gcsetest.ll
+++ b/test/Analysis/DSGraph/gcsetest.ll
@@ -38,11 +38,11 @@ int %test() {
%B = call int* %getp(%intpair* %C)
%A1 = load int* %A
- store int 123, int* %B ; Store cannot alias %A
+ store int 123, int* %B ; Store does alias %A
%A2 = load int* %A
- %ELIM_x = sub int %A1, %A2
- ret int %ELIM_x
+ %x = sub int %A1, %A2
+ ret int %x
}
int %test2() { ; Test context sensitivity