mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
e78760e179
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8558 91177308-0d34-0410-b5e6-96231b3b80d8
26 lines
448 B
LLVM
26 lines
448 B
LLVM
; This testcase ensures that redundant loads are preserved when they are not
|
|
; allowed to be eliminated.
|
|
; RUN: llvm-as < %s | opt -load-vn -gcse | llvm-dis | grep sub
|
|
;
|
|
int %test1(int* %P) {
|
|
%A = load int* %P
|
|
store int 1, int* %P
|
|
%B = load int* %P
|
|
%C = sub int %A, %B
|
|
ret int %C
|
|
}
|
|
|
|
int %test2(int* %P) {
|
|
%A = load int* %P
|
|
br label %BB2
|
|
BB2:
|
|
store int 5, int* %P
|
|
br label %BB3
|
|
BB3:
|
|
%B = load int* %P
|
|
%C = sub int %A, %B
|
|
ret int %C
|
|
}
|
|
|
|
|