[llvm-commits] CVS: llvm/test/Regression/Jello/test-arith.ll
Chris Lattner
lattner at cs.uiuc.edu
Thu Dec 12 23:52:01 PST 2002
Changes in directory llvm/test/Regression/Jello:
test-arith.ll updated: 1.5 -> 1.6
---
Log message:
Stop sucking
---
Diffs of the changes:
Index: llvm/test/Regression/Jello/test-arith.ll
diff -u llvm/test/Regression/Jello/test-arith.ll:1.5 llvm/test/Regression/Jello/test-arith.ll:1.6
--- llvm/test/Regression/Jello/test-arith.ll:1.5 Thu Dec 12 23:44:21 2002
+++ llvm/test/Regression/Jello/test-arith.ll Thu Dec 12 23:51:32 2002
@@ -1,7 +1,7 @@
int %main() {
%A = add sbyte 0, 12
- %B = sub sbyte %A, %A
+ %B = sub sbyte %A, 1
%C = mul sbyte %B, %B
%D = div sbyte %C, %C
%E = rem sbyte %D, %D
@@ -9,7 +9,7 @@
%G = rem ubyte 6, 5
%A = add short 0, 12
- %B = sub short %A, %A
+ %B = sub short %A, 1
%C = mul short %B, %B
%D = div short %C, %C
%E = rem short %D, %D
@@ -17,7 +17,7 @@
%G = rem uint 6, 5
%A = add int 0, 12
- %B = sub int %A, %A
+ %B = sub int %A, 1
%C = mul int %B, %B
%D = div int %C, %C
%E = rem int %D, %D
More information about the llvm-commits
mailing list