S/390: Add missing brackets.
authorAndreas Krebbel <krebbel@linux.vnet.ibm.com>
Tue, 15 Sep 2015 11:07:16 +0000 (11:07 +0000)
committerAndreas Krebbel <krebbel@gcc.gnu.org>
Tue, 15 Sep 2015 11:07:16 +0000 (11:07 +0000)
gcc/ChangeLog:

2015-09-15  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>

* config/s390/s390.c (s390_const_operand_ok): Add missing
brackets.

From-SVN: r227780

gcc/ChangeLog
gcc/config/s390/s390.c

index 7eace8ef656f6a6f6aafb1d6bc520980050b07fb..be8089daa85e12313d6a85b0c5814f28b59e466f 100644 (file)
@@ -1,3 +1,8 @@
+2015-09-15  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
+
+        * config/s390/s390.c (s390_const_operand_ok): Add missing
+       brackets.
+
 2015-09-15  Richard Biener  <rguenther@suse.de>
 
        PR lto/67568
index d276ab21ab3c3aaeebd455e6e915335f5b445d60..ad3132f5cc67dada27f658c269fa7aac8e33079e 100644 (file)
@@ -728,7 +728,7 @@ s390_const_operand_ok (tree arg, int argnum, int op_flags, tree decl)
                HOST_WIDE_INT_PRINT_DEC ".."
                HOST_WIDE_INT_PRINT_DEC ")",
                argnum, decl,
-               -(HOST_WIDE_INT)1 << (bitwidth - 1),
+               -((HOST_WIDE_INT)1 << (bitwidth - 1)),
                ((HOST_WIDE_INT)1 << (bitwidth - 1)) - 1);
          return false;
        }