Commit f22e891a by Andreas Krebbel Committed by Andreas Krebbel

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
parent c72a85f2
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> 2009-04-24 Diego Novillo <dnovillo@google.com>
* gengtype-parse.c (parse_error): Add newline after message. * gengtype-parse.c (parse_error): Add newline after message.
......
...@@ -129,13 +129,13 @@ ...@@ -129,13 +129,13 @@
(define_constraint "I" (define_constraint "I"
"An 8-bit constant (0..255)" "An 8-bit constant (0..255)"
(and (match_code "const_int") (and (match_code "const_int")
(match_test "(unsigned int) ival <= 255"))) (match_test "(unsigned HOST_WIDE_INT) ival <= 255")))
(define_constraint "J" (define_constraint "J"
"A 12-bit constant (0..4095)" "A 12-bit constant (0..4095)"
(and (match_code "const_int") (and (match_code "const_int")
(match_test "(unsigned int) ival <= 4095"))) (match_test "(unsigned HOST_WIDE_INT) ival <= 4095")))
(define_constraint "K" (define_constraint "K"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment