mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-29 10:32:47 +00:00
Fix broken test
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3613 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
482004cb34
commit
92bab83913
@ -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:
|
||||
|
@ -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