summaryrefslogtreecommitdiff
path: root/test/ExecutionEngine/test-arith.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-11-02 20:54:11 +0000
committerChris Lattner <sabre@nondot.org>2002-11-02 20:54:11 +0000
commitf37ca3acdad1242ab33c104f468b2727400ce822 (patch)
treea00500c15a11636abde62f6dd4a2d9d68e0cd742 /test/ExecutionEngine/test-arith.ll
parentca9671d8644a614d6f1d347794c8f04cce0445d0 (diff)
downloadllvm-f37ca3acdad1242ab33c104f468b2727400ce822.tar.gz
llvm-f37ca3acdad1242ab33c104f468b2727400ce822.tar.bz2
llvm-f37ca3acdad1242ab33c104f468b2727400ce822.tar.xz
Enable div and mod tests
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4507 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ExecutionEngine/test-arith.ll')
-rw-r--r--test/ExecutionEngine/test-arith.ll24
1 files changed, 12 insertions, 12 deletions
diff --git a/test/ExecutionEngine/test-arith.ll b/test/ExecutionEngine/test-arith.ll
index c0dd840ced..ffe85a8525 100644
--- a/test/ExecutionEngine/test-arith.ll
+++ b/test/ExecutionEngine/test-arith.ll
@@ -3,26 +3,26 @@ void %test() {
%A = add sbyte 0, 12
%B = sub sbyte %A, %A
%C = mul sbyte %B, %B
- ;%D = div sbyte %C, %C
- ;%E = rem sbyte %D, %D
- ;%F = div ubyte 5, 6
- ;%G = rem ubyte 6, 5
+ %D = div sbyte %C, %C
+ %E = rem sbyte %D, %D
+ %F = div ubyte 5, 6
+ %G = rem ubyte 6, 5
%A = add short 0, 12
%B = sub short %A, %A
%C = mul short %B, %B
- ;%D = div short %C, %C
- ;%E = rem short %D, %D
- ;%F = div ushort 5, 6
- ;%G = rem uint 6, 5
+ %D = div short %C, %C
+ %E = rem short %D, %D
+ %F = div ushort 5, 6
+ %G = rem uint 6, 5
%A = add int 0, 12
%B = sub int %A, %A
%C = mul int %B, %B
- ;%D = div int %C, %C
- ;%E = rem int %D, %D
- ;%F = div uint 5, 6
- ;%G = rem uint 6, 5
+ %D = div int %C, %C
+ %E = rem int %D, %D
+ %F = div uint 5, 6
+ %G = rem uint 6, 5
ret void
}