From: Nathan Froyd Date: Fri, 8 Oct 2010 01:47:33 +0000 (+0000) Subject: m68hc11.c (m68hc11_print_operand): Call m68hc11_print_operand_address. X-Git-Tag: releases/gcc-4.6.0~3761 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5bd84829f73d467f67746090cd781973d674f2f3;p=thirdparty%2Fgcc.git m68hc11.c (m68hc11_print_operand): Call m68hc11_print_operand_address. * config/m68hc11/m68hc11.c (m68hc11_print_operand): Call m68hc11_print_operand_address. From-SVN: r165148 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 408f89c73a85..403c825fc8d6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-10-07 Nathan Froyd + + * config/m68hc11/m68hc11.c (m68hc11_print_operand): Call + m68hc11_print_operand_address. + 2010-10-07 Nathan Froyd * builtins.c (rewrite_call_expr): Move code to... diff --git a/gcc/config/m68hc11/m68hc11.c b/gcc/config/m68hc11/m68hc11.c index bf9c26cbbefc..e45a74892c64 100644 --- a/gcc/config/m68hc11/m68hc11.c +++ b/gcc/config/m68hc11/m68hc11.c @@ -2261,7 +2261,7 @@ m68hc11_print_operand (FILE *file, rtx op, int letter) case MEM: gcc_assert (TARGET_M6812); fprintf (file, "["); - print_operand_address (file, XEXP (base, 0)); + m68hc11_print_operand_address (file, XEXP (base, 0)); fprintf (file, "]"); break;