New testcase for bugs in the constant propogator
authorChris Lattner <sabre@nondot.org>
Fri, 3 May 2002 20:25:40 +0000 (20:25 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 3 May 2002 20:25:40 +0000 (20:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2462 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/ConstProp/2002-05-03-DivideByZeroException.ll [new file with mode: 0644]

diff --git a/test/Transforms/ConstProp/2002-05-03-DivideByZeroException.ll b/test/Transforms/ConstProp/2002-05-03-DivideByZeroException.ll
new file mode 100644 (file)
index 0000000..ddfd7d1
--- /dev/null
@@ -0,0 +1,14 @@
+; Make sure that the constant propogator doesn't divide by zero!
+;
+; RUN: as < %s | opt -constprop
+;
+
+int "test"() {
+       %R = div int 12, 0
+       ret int %R
+}
+
+int "test2"() {
+       %R = rem int 12, 0
+       ret int %R
+}