From: Andreas Krebbel Date: Thu, 22 Jan 2015 11:39:00 +0000 (+0000) Subject: s390.md (atomic code attribute): Fix typo "ior" -> "or". X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cf5b43b050567e8ad9ca65b28489324fe5cc1022;p=gcc.git s390.md (atomic code attribute): Fix typo "ior" -> "or". 2015-01-22 Andreas Krebbel * config/s390/s390.md (atomic code attribute): Fix typo "ior" -> "or". From-SVN: r219993 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7a1c6e567f1..d060dfae047 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2015-01-22 Andreas Krebbel + + * config/s390/s390.md (atomic code attribute): Fix typo "ior" -> + "or". + 2015-01-22 Max Ostapenko PR driver/64690 diff --git a/gcc/config/s390/s390.md b/gcc/config/s390/s390.md index 3b74e450c2f..f5ba132cc47 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")])