constraints.md ('I', 'J'): Fix condition.
authorAndreas Krebbel <krebbel1@de.ibm.com>
Fri, 24 Apr 2009 14:47:33 +0000 (14:47 +0000)
committerAndreas Krebbel <krebbel@gcc.gnu.org>
Fri, 24 Apr 2009 14:47:33 +0000 (14:47 +0000)
2009-04-24  Andreas Krebbel  <krebbel1@de.ibm.com>

* config/s390/constraints.md ('I', 'J'): Fix condition.

From-SVN: r146729

gcc/ChangeLog
gcc/config/s390/constraints.md

index 5ba538e..8d9bc2b 100644 (file)
@@ -1,3 +1,7 @@
+2009-04-24  Andreas Krebbel  <krebbel1@de.ibm.com>
+
+       * config/s390/constraints.md ('I', 'J'): Fix condition.
+
 2009-04-24  Diego Novillo  <dnovillo@google.com>
 
        * gengtype-parse.c (parse_error): Add newline after message.
index ad95308..4d37094 100644 (file)
 (define_constraint "I"
   "An 8-bit constant (0..255)"
   (and (match_code "const_int")
-       (match_test "(unsigned int) ival <= 255")))
+       (match_test "(unsigned HOST_WIDE_INT) ival <= 255")))
 
 
 (define_constraint "J"
   "A 12-bit constant (0..4095)"
   (and (match_code "const_int")
-       (match_test "(unsigned int) ival <= 4095")))
+       (match_test "(unsigned HOST_WIDE_INT) ival <= 4095")))
 
 
 (define_constraint "K"