mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Fix broken test
llvm-svn: 3613
This commit is contained in:
parent
7387b3279b
commit
67dd76548b
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user