]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* config/avr/predicates.md (low_io_address_operand): Fix typo.
authorJoern Rennecke <joern.rennecke@embecosm.com>
Sun, 9 Nov 2014 17:06:50 +0000 (17:06 +0000)
committerJoern Rennecke <amylaar@gcc.gnu.org>
Sun, 9 Nov 2014 17:06:50 +0000 (17:06 +0000)
From-SVN: r217266

gcc/ChangeLog
gcc/config/avr/predicates.md

index c2e61a56351a2cd107da498bdc02ef9f960e0351..1d61a28f06df1901c420f2803683a7176f652c5e 100644 (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
index 4b456a5706d420141a729c1b47b1c54133e3f467..3560ebd8ab99247ab248eaf748c3fddd027b434e 100644 (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"))))