Stop sucking
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4992 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/ExecutionEngine/test-arith.ll b/test/ExecutionEngine/test-arith.ll
index 3e6e27c..5e2a43c 100644
--- a/test/ExecutionEngine/test-arith.ll
+++ b/test/ExecutionEngine/test-arith.ll
@@ -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