aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Weigand <uweigand@de.ibm.com>2004-02-19 17:36:45 +0000
committerUlrich Weigand <uweigand@gcc.gnu.org>2004-02-19 17:36:45 +0000
commit4dbb59702c3cff6ff0f0f182126c350839a029cd (patch)
treeabca148cf8724de0a6e70280b1e0ff1741a2aa5f
parent16edbbf082fd2fbabe92ddbb20ffc2d9f757ce75 (diff)
downloadgcc-4dbb59702c3cff6ff0f0f182126c350839a029cd.zip
gcc-4dbb59702c3cff6ff0f0f182126c350839a029cd.tar.gz
gcc-4dbb59702c3cff6ff0f0f182126c350839a029cd.tar.bz2
s390.md ("*subdf3_cc", [...]): Subtraction is not commutative.
* config/s390/s390.md ("*subdf3_cc", "*subdf3_cconly", "*subsf3_cc", "*subsf3_cconly"): Subtraction is not commutative. From-SVN: r78110
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/s390/s390.md8
2 files changed, 9 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 7641ece..1dcefa5a 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2004-02-19 Ulrich Weigand <uweigand@de.ibm.com>
+
+ * config/s390/s390.md ("*subdf3_cc", "*subdf3_cconly", "*subsf3_cc",
+ "*subsf3_cconly"): Subtraction is not commutative.
+
2004-02-19 Zack Weinberg <zack@codesourcery.com>
* sdbout.c (preinit_symbols, sdbout_initialized): New statics.
diff --git a/gcc/config/s390/s390.md b/gcc/config/s390/s390.md
index 5cae9ba..cc8655d 100644
--- a/gcc/config/s390/s390.md
+++ b/gcc/config/s390/s390.md
@@ -4108,7 +4108,7 @@
(define_insn "*subdf3_cc"
[(set (reg 33)
- (compare (minus:DF (match_operand:DF 1 "nonimmediate_operand" "%0,0")
+ (compare (minus:DF (match_operand:DF 1 "nonimmediate_operand" "0,0")
(match_operand:DF 2 "general_operand" "f,R"))
(match_operand:DF 3 "const0_operand" "")))
(set (match_operand:DF 0 "register_operand" "=f,f")
@@ -4122,7 +4122,7 @@
(define_insn "*subdf3_cconly"
[(set (reg 33)
- (compare (minus:DF (match_operand:DF 1 "nonimmediate_operand" "%0,0")
+ (compare (minus:DF (match_operand:DF 1 "nonimmediate_operand" "0,0")
(match_operand:DF 2 "general_operand" "f,R"))
(match_operand:DF 3 "const0_operand" "")))
(clobber (match_scratch:DF 0 "=f,f"))]
@@ -4172,7 +4172,7 @@
(define_insn "*subsf3_cc"
[(set (reg 33)
- (compare (minus:SF (match_operand:SF 1 "nonimmediate_operand" "%0,0")
+ (compare (minus:SF (match_operand:SF 1 "nonimmediate_operand" "0,0")
(match_operand:SF 2 "general_operand" "f,R"))
(match_operand:SF 3 "const0_operand" "")))
(set (match_operand:SF 0 "register_operand" "=f,f")
@@ -4186,7 +4186,7 @@
(define_insn "*subsf3_cconly"
[(set (reg 33)
- (compare (minus:SF (match_operand:SF 1 "nonimmediate_operand" "%0,0")
+ (compare (minus:SF (match_operand:SF 1 "nonimmediate_operand" "0,0")
(match_operand:SF 2 "general_operand" "f,R"))
(match_operand:SF 3 "const0_operand" "")))
(clobber (match_scratch:SF 0 "=f,f"))]