mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
69ccadd753
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32115 91177308-0d34-0410-b5e6-96231b3b80d8
22 lines
601 B
LLVM
22 lines
601 B
LLVM
; This testcase tests for a problem where LICM hoists loads out of a loop
|
|
; despite the fact that calls to unknown functions may modify what is being
|
|
; loaded from. Basically if the load gets hoisted, the subtract gets turned
|
|
; into a constant zero.
|
|
;
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -licm -load-vn -gcse -instcombine | llvm-dis | grep load
|
|
|
|
%X = global int 7
|
|
declare void %foo()
|
|
|
|
int %test(bool %c) {
|
|
%A = load int *%X
|
|
br label %Loop
|
|
Loop:
|
|
call void %foo()
|
|
%B = load int *%X ;; Should not hoist this load!
|
|
br bool %c, label %Loop, label %Out
|
|
Out:
|
|
%C = sub int %A, %B
|
|
ret int %C
|
|
}
|