From: Joern Rennecke Date: Sun, 9 Nov 2014 17:06:50 +0000 (+0000) Subject: * config/avr/predicates.md (low_io_address_operand): Fix typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5966ff9f173d621afe1eb735b4639b2937a02175;p=gcc.git * config/avr/predicates.md (low_io_address_operand): Fix typo. From-SVN: r217266 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c2e61a56351..1d61a28f06d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2014-11-09 Joern Rennecke + + * config/avr/predicates.md (low_io_address_operand): Fix typo. + 2014-11-09 Vladimir Makarov PR rtl-optimization/63620 diff --git a/gcc/config/avr/predicates.md b/gcc/config/avr/predicates.md index 4b456a5706d..3560ebd8ab9 100644 --- a/gcc/config/avr/predicates.md +++ b/gcc/config/avr/predicates.md @@ -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"))))