diff options
author | Andreas Krebbel <Andreas.Krebbel@de.ibm.com> | 2015-01-22 11:39:00 +0000 |
---|---|---|
committer | Andreas Krebbel <krebbel@gcc.gnu.org> | 2015-01-22 11:39:00 +0000 |
commit | cf5b43b050567e8ad9ca65b28489324fe5cc1022 (patch) | |
tree | ea1509fbb2e4ce37c61f8f8a751e561fdbe68e7f | |
parent | f78a6ae44db20145f0d3deecf9a0ff46153b7cb4 (diff) | |
download | gcc-cf5b43b050567e8ad9ca65b28489324fe5cc1022.zip gcc-cf5b43b050567e8ad9ca65b28489324fe5cc1022.tar.gz gcc-cf5b43b050567e8ad9ca65b28489324fe5cc1022.tar.bz2 |
s390.md (atomic code attribute): Fix typo "ior" -> "or".
2015-01-22 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
* config/s390/s390.md (atomic code attribute): Fix typo "ior" ->
"or".
From-SVN: r219993
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/s390/s390.md | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7a1c6e5..d060dfa 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2015-01-22 Andreas Krebbel <Andreas.Krebbel@de.ibm.com> + + * config/s390/s390.md (atomic code attribute): Fix typo "ior" -> + "or". + 2015-01-22 Max Ostapenko <m.ostapenko@partner.samsung.com> PR driver/64690 diff --git a/gcc/config/s390/s390.md b/gcc/config/s390/s390.md index 3b74e45..f5ba132 100644 --- a/gcc/config/s390/s390.md +++ b/gcc/config/s390/s390.md @@ -460,7 +460,7 @@ ;; This iterator and attribute allow to combine most atomic operations. (define_code_iterator ATOMIC [and ior xor plus minus mult]) (define_code_iterator ATOMIC_Z196 [and ior xor plus]) -(define_code_attr atomic [(and "and") (ior "ior") (xor "xor") +(define_code_attr atomic [(and "and") (ior "or") (xor "xor") (plus "add") (minus "sub") (mult "nand")]) (define_code_attr noxa [(and "n") (ior "o") (xor "x") (plus "a")]) |