Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / Transforms / InstSimplify / ConstProp / 2002-05-03-DivideByZeroException.ll
blob683599a74f2a3a51382163b1a95a77796974d815
1 ; Make sure that the constant propogator doesn't divide by zero!
3 ; RUN: opt < %s -passes=instsimplify
6 define i32 @test() {
7         %R = sdiv i32 12, 0             ; <i32> [#uses=1]
8         ret i32 %R
11 define i32 @test2() {
12         %R = srem i32 12, 0             ; <i32> [#uses=1]
13         ret i32 %R