1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 14:32:51 +01:00
llvm-mirror/test/Regression/Transforms/LICM/2003-08-04-TrappingInstOkHoist.ll
John Criswell 49caf50ce0 Use the new prcontext script.
llvm-svn: 15427
2004-08-02 22:31:58 +00:00

21 lines
451 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 | %prcontext "test" 2 | 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
}