projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3fa61eb
)
Test long support
author
Chris Lattner
<sabre@nondot.org>
Mon, 13 Jan 2003 00:56:27 +0000
(
00:56
+0000)
committer
Chris Lattner
<sabre@nondot.org>
Mon, 13 Jan 2003 00:56:27 +0000
(
00:56
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5243
91177308
-0d34-0410-b5e6-
96231b3b80d8
test/ExecutionEngine/test-arith.ll
patch
|
blob
|
history
diff --git
a/test/ExecutionEngine/test-arith.ll
b/test/ExecutionEngine/test-arith.ll
index 5e2a43ceb4e6bcf5855ee155f23cd7f03017fcd6..86512da4dc2ca31cc9d0811f6ea29e85f192ce26 100644
(file)
--- a/
test/ExecutionEngine/test-arith.ll
+++ b/
test/ExecutionEngine/test-arith.ll
@@
-1,4
+1,3
@@
-
int %main() {
%A = add sbyte 0, 12
%B = sub sbyte %A, 1
@@
-24,5
+23,13
@@
int %main() {
%F = div uint 5, 6
%G = rem uint 6, 5
+ %A = add long 0, 12
+ %B = sub long %A, 1
+ %C = mul long %B, %B
+ %D = div long %C, %C
+ %E = rem long %D, %D
+ %F = div ulong 5, 6
+ %G = rem ulong 6, 5
+
ret int 0
}