1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/Regression/Transforms/InstCombine/rem.ll

45 lines
854 B
LLVM
Raw Normal View History

; This test makes sure that these instructions are properly eliminated.
;
2006-02-28 06:30:48 +01:00
; RUN: llvm-as < %s | opt -instcombine -disable-output &&
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep rem
implementation
int %test1(int %A) {
%B = rem int %A, 1 ; ISA constant 0
ret int %B
}
2006-02-28 06:30:48 +01:00
int %test2(int %A) { ; 0 % X = 0, we don't need to preserve traps
%B = rem int 0, %A
ret int %B
}
uint %test3(uint %A) {
%B = rem uint %A, 8 ; & 7
ret uint %B
}
2004-07-06 09:38:00 +02:00
bool %test3(int %A) {
%B = rem int %A, -8 ; & 7
%C = setne int %B, 0
ret bool %C
}
uint %test4(uint %X, bool %C) {
%V = select bool %C, uint 1, uint 8
%R = rem uint %X, %V
ret uint %R
}
2006-02-05 08:52:47 +01:00
uint %test5(uint %X, ubyte %B) {
%Amt = shl uint 32, ubyte %B
%V = rem uint %X, %Amt
ret uint %V
}
2006-02-28 06:30:48 +01:00
int %test6(int %A) {
%B = rem int %A, 0 ;; undef
ret int %B
}