From: Chris Lattner Date: Sun, 12 Dec 2004 21:40:22 +0000 (+0000) Subject: Add testcases for simple things we can handle that occur now in vortex. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=cb8e9c94ff61905ad981f1f07e75667709ea9641;p=oota-llvm.git Add testcases for simple things we can handle that occur now in vortex. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18837 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/InstCombine/div.ll b/test/Transforms/InstCombine/div.ll index 8e03fc02d4c..54199aedd07 100644 --- a/test/Transforms/InstCombine/div.ll +++ b/test/Transforms/InstCombine/div.ll @@ -55,3 +55,9 @@ bool %test9(ubyte %A) { ret bool %C } +uint %test10(uint %X, bool %C) { + %V = select bool %C, uint 64, uint 8 + %R = div uint %X, %V + ret uint %R +} + diff --git a/test/Transforms/InstCombine/rem.ll b/test/Transforms/InstCombine/rem.ll index dd4b42aee07..2020bf98aea 100644 --- a/test/Transforms/InstCombine/rem.ll +++ b/test/Transforms/InstCombine/rem.ll @@ -25,3 +25,9 @@ bool %test3(int %A) { %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 +}