* config/avr/predicates.md (low_io_address_operand): Fix typo.

From-SVN: r217266
This commit is contained in:
Joern Rennecke 2014-11-09 17:06:50 +00:00 committed by Joern Rennecke
parent 8160cd3ee4
commit 5966ff9f17
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2014-11-09 Joern Rennecke <joern.rennecke@embecosm.com>
* config/avr/predicates.md (low_io_address_operand): Fix typo.
2014-11-09 Vladimir Makarov <vmakarov@redhat.com>
PR rtl-optimization/63620

View File

@ -46,7 +46,7 @@
(define_special_predicate "low_io_address_operand"
(ior (and (match_code "const_int")
(match_test "IN_RANGE (INTVAL (op) - avr_current_arch->sfr_offset,
0, 020 - GET_MODE_SIZE (mode))"))
0, 0x20 - GET_MODE_SIZE (mode))"))
(and (match_code "symbol_ref")
(match_test "SYMBOL_REF_FLAGS (op) & SYMBOL_FLAG_IO_LOW"))))