mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
258f49cb84
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10404 91177308-0d34-0410-b5e6-96231b3b80d8
21 lines
447 B
LLVM
21 lines
447 B
LLVM
; This testcase tests to make sure a trapping instruction is hoisted when
|
|
; it is guaranteed to execute.
|
|
;
|
|
; RUN: llvm-as < %s | opt -licm | llvm-dis | grep -C2 "test" | grep div
|
|
|
|
%X = global int 0
|
|
declare void %foo(int)
|
|
|
|
int %test(bool %c) {
|
|
%A = load int *%X
|
|
br label %Loop
|
|
Loop:
|
|
%B = div int 4, %A ;; Should have hoisted this div!
|
|
call void %foo(int %B)
|
|
br bool %c, label %Loop, label %Out
|
|
|
|
Out:
|
|
%C = sub int %A, %B
|
|
ret int %C
|
|
}
|