diff mbox

Committed: Fix typo in low_io_address_operand

Message ID CAMqJFCryNO=Jc3UC+NU8K02bw-D2F_hHn9bdPuKe58bj2=78vQ@mail.gmail.com
State New
Headers show

Commit Message

Joern Rennecke Nov. 9, 2014, 5:09 p.m. UTC
I forgot the 'x' number base specifier in r216034.
Committed as obvious.
diff mbox

Patch

2014-11-09  Joern Rennecke  <joern.rennecke@embecosm.com>

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

Index: config/avr/predicates.md
===================================================================
--- config/avr/predicates.md	(revision 217265)
+++ config/avr/predicates.md	(working copy)
@@ -46,7 +46,7 @@  (define_predicate "stack_register_operan
 (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"))))