mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 10:50:51 +08:00
constraints.md ('I', 'J'): Fix condition.
2009-04-24 Andreas Krebbel <krebbel1@de.ibm.com> * config/s390/constraints.md ('I', 'J'): Fix condition. From-SVN: r146729
This commit is contained in:
parent
c72a85f21a
commit
f22e891a06
@ -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.
|
||||
|
@ -129,13 +129,13 @@
|
||||
(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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user