Fix broken test

llvm-svn: 3613
This commit is contained in:
Chris Lattner 2002-09-07 22:48:30 +00:00
parent 340182e523
commit 439f5d5ef7
1 changed files with 3 additions and 3 deletions

View File

@ -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: