mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
69ccadd753
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32115 91177308-0d34-0410-b5e6-96231b3b80d8
24 lines
466 B
LLVM
24 lines
466 B
LLVM
; This testcase ensures that redundant loads are eliminated when they should
|
|
; be. All RL variables (redundant loads) should be eliminated.
|
|
;
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -load-vn -gcse | llvm-dis | not grep %RL
|
|
;
|
|
int "test1"(int* %P) {
|
|
%A = load int* %P
|
|
%RL = load int* %P
|
|
%C = add int %A, %RL
|
|
ret int %C
|
|
}
|
|
|
|
int "test2"(int* %P) {
|
|
%A = load int* %P
|
|
br label %BB2
|
|
BB2:
|
|
br label %BB3
|
|
BB3:
|
|
%RL = load int* %P
|
|
%B = add int %A, %RL
|
|
ret int %B
|
|
}
|
|
|