mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-24 06:25:18 +00:00
Fix testcase to work with store forwarding
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6689 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1,19 +1,16 @@
|
|||||||
; This testcase ensures that redundant loads are preserved when they are not
|
; This testcase ensures that redundant loads are preserved when they are not
|
||||||
; allowed to be eliminated.
|
; allowed to be eliminated.
|
||||||
; RUN: as < %s | dis > Output/%s.before
|
; RUN: as < %s | opt -load-vn -gcse | dis | grep sub
|
||||||
; RUN: as < %s | opt -load-vn -gcse | dis > Output/%s.after
|
|
||||||
; RUN: echo some output
|
|
||||||
; RUN: diff Output/%s.before Output/%s.after
|
|
||||||
;
|
;
|
||||||
int "test1"(int* %P) {
|
int %test1(int* %P) {
|
||||||
%A = load int* %P
|
%A = load int* %P
|
||||||
store int 1, int* %P
|
store int 1, int* %P
|
||||||
%B = load int* %P
|
%B = load int* %P
|
||||||
%C = add int %A, %B
|
%C = sub int %A, %B
|
||||||
ret int %C
|
ret int %C
|
||||||
}
|
}
|
||||||
|
|
||||||
int "test2"(int* %P) {
|
int %test2(int* %P) {
|
||||||
%A = load int* %P
|
%A = load int* %P
|
||||||
br label %BB2
|
br label %BB2
|
||||||
BB2:
|
BB2:
|
||||||
@@ -21,7 +18,7 @@ BB2:
|
|||||||
br label %BB3
|
br label %BB3
|
||||||
BB3:
|
BB3:
|
||||||
%B = load int* %P
|
%B = load int* %P
|
||||||
%C = add int %A, %B
|
%C = sub int %A, %B
|
||||||
ret int %C
|
ret int %C
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user