llvm-6502/test/Transforms/LICM/2003-08-04-TrappingInstHoist.ll
John Criswell cc455dea0f Use the new prcontext script.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15427 91177308-0d34-0410-b5e6-96231b3b80d8
2004-08-02 22:31:58 +00:00

28 lines
625 B
LLVM

; This testcase tests for a problem where LICM hoists
; potentially trapping instructions when they are not guaranteed to execute.
;
; RUN: llvm-as < %s | opt -licm | llvm-dis | %prcontext "IfUnEqual" 2 | grep div
%X = global int 0
declare void %foo()
int %test(bool %c) {
%A = load int *%X
br label %Loop
Loop:
call void %foo()
br bool %c, label %LoopTail, label %IfUnEqual
IfUnEqual:
%B1 = div int 4, %A ;; Should not hoist this div!
br label %LoopTail
LoopTail:
%B = phi int [ 0, %Loop ], [ %B1, %IfUnEqual]
br bool %c, label %Loop, label %Out
Out:
%C = sub int %A, %B
ret int %C
}