summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/rem.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-10-12 20:56:15 +0000
committerChris Lattner <sabre@nondot.org>2006-10-12 20:56:15 +0000
commit871a87de9a1563cbb95ce6d999d2229c61c55456 (patch)
treeff32e4228e3b5af98b5aef589baa5c77577ad68d /test/CodeGen/X86/rem.ll
parentf6f1f4e7cf7d21b6ba49defe5dd6ef5a69b68572 (diff)
downloadllvm-871a87de9a1563cbb95ce6d999d2229c61c55456.tar.gz
llvm-871a87de9a1563cbb95ce6d999d2229c61c55456.tar.bz2
llvm-871a87de9a1563cbb95ce6d999d2229c61c55456.tar.xz
new testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30919 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/rem.ll')
-rw-r--r--test/CodeGen/X86/rem.ll23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/CodeGen/X86/rem.ll b/test/CodeGen/X86/rem.ll
new file mode 100644
index 0000000000..905b142393
--- /dev/null
+++ b/test/CodeGen/X86/rem.ll
@@ -0,0 +1,23 @@
+; RUN: llvm-as < %s | llc -march=x86 &&
+; RUN: llvm-as < %s | llc -march=x86 | not grep div
+
+int %test1(int %X) {
+ %tmp1 = rem int %X, 255
+ ret int %tmp1
+}
+
+int %test2(int %X) {
+ %tmp1 = rem int %X, 256
+ ret int %tmp1
+}
+
+uint %test3(uint %X) {
+ %tmp1 = rem uint %X, 255
+ ret uint %tmp1
+}
+
+uint %test4(uint %X) {
+ %tmp1 = rem uint %X, 256 ; just an and
+ ret uint %tmp1
+}
+