llvm-6502/test/Transforms/LICM/2003-02-28-PromoteDifferentType.ll
2003-09-16 15:29:54 +00:00

16 lines
283 B
LLVM

; Test that hoisting is disabled for pointers of different types...
;
; RUN: llvm-as < %s | opt -licm
void %test(int* %P) {
br label %Loop
Loop:
store int 5, int* %P
%P2 = cast int* %P to sbyte*
store sbyte 4, sbyte* %P2
br bool true, label %Loop, label %Out
Out:
ret void
}