aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/Reassociate
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-05-16 00:56:36 +0000
committerChris Lattner <sabre@nondot.org>2002-05-16 00:56:36 +0000
commit6759ca0994fc6d3ec4438f0a7598a5dca6b139d5 (patch)
tree54d30fd986a71876289f419cb76750ccac0e3848 /test/Transforms/Reassociate
parent2241b7bfbbbd3896b8d90afbdc514dfdcb2f7195 (diff)
downloadexternal_llvm-6759ca0994fc6d3ec4438f0a7598a5dca6b139d5.zip
external_llvm-6759ca0994fc6d3ec4438f0a7598a5dca6b139d5.tar.gz
external_llvm-6759ca0994fc6d3ec4438f0a7598a5dca6b139d5.tar.bz2
Fix testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2634 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/Reassociate')
-rw-r--r--test/Transforms/Reassociate/2002-05-15-SubReassociate.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/Reassociate/2002-05-15-SubReassociate.ll b/test/Transforms/Reassociate/2002-05-15-SubReassociate.ll
index fcbd723..7df7baf 100644
--- a/test/Transforms/Reassociate/2002-05-15-SubReassociate.ll
+++ b/test/Transforms/Reassociate/2002-05-15-SubReassociate.ll
@@ -6,7 +6,7 @@
; RUN: fi
int "test"(int %A, int %B) {
- %W = add int -5, %B
+ %W = add int 5, %B
%X = add int -7, %A
%Y = sub int %X, %W
%Z = add int %Y, 12