; This test makes sure that these instructions are properly eliminated.
;
-
+; RUN: llvm-as < %s | opt -instcombine -disable-output &&
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep rem
implementation
ret int %B
}
-int %test2(int %A) { ; 0 % X = 0, we don't need ot preserve traps
+int %test2(int %A) { ; 0 % X = 0, we don't need to preserve traps
%B = rem int 0, %A
ret int %B
}
ret uint %V
}
+int %test6(int %A) {
+ %B = rem int %A, 0 ;; undef
+ ret int %B
+}