diff options
author | Nathan Froyd <froydnj@codesourcery.com> | 2010-10-08 01:47:33 +0000 |
---|---|---|
committer | Nathan Froyd <froydnj@gcc.gnu.org> | 2010-10-08 01:47:33 +0000 |
commit | 5bd84829f73d467f67746090cd781973d674f2f3 (patch) | |
tree | 00d46eb63bd328bb911f743de3f105703e0261ec /gcc | |
parent | d3ec3e15d30ac294e3cfbcedda6b639c98cd90fc (diff) | |
download | gcc-5bd84829f73d467f67746090cd781973d674f2f3.zip gcc-5bd84829f73d467f67746090cd781973d674f2f3.tar.gz gcc-5bd84829f73d467f67746090cd781973d674f2f3.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/m68hc11/m68hc11.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 408f89c..403c825 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2010-10-07 Nathan Froyd <froydnj@codesourcery.com> + * config/m68hc11/m68hc11.c (m68hc11_print_operand): Call + m68hc11_print_operand_address. + +2010-10-07 Nathan Froyd <froydnj@codesourcery.com> + * builtins.c (rewrite_call_expr): Move code to... (rewrite_call_expr_valist): ...here. Call build_call_expr_loc_array. diff --git a/gcc/config/m68hc11/m68hc11.c b/gcc/config/m68hc11/m68hc11.c index bf9c26c..e45a748 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; |