diff options
Diffstat (limited to 'llvm/test/Transforms/ConstProp/2002-05-03-DivideByZeroException.ll')
| -rw-r--r-- | llvm/test/Transforms/ConstProp/2002-05-03-DivideByZeroException.ll | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/llvm/test/Transforms/ConstProp/2002-05-03-DivideByZeroException.ll b/llvm/test/Transforms/ConstProp/2002-05-03-DivideByZeroException.ll new file mode 100644 index 00000000000..331501adb3e --- /dev/null +++ b/llvm/test/Transforms/ConstProp/2002-05-03-DivideByZeroException.ll @@ -0,0 +1,14 @@ +; Make sure that the constant propogator doesn't divide by zero! +; +; RUN: llvm-upgrade < %s | llvm-as | opt -constprop +; + +int "test"() { + %R = div int 12, 0 + ret int %R +} + +int "test2"() { + %R = rem int 12, 0 + ret int %R +} |

