Commit 5bd84829 by Nathan Froyd Committed by Nathan Froyd

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
parent d3ec3e15
2010-10-07 Nathan Froyd <froydnj@codesourcery.com> 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... * builtins.c (rewrite_call_expr): Move code to...
(rewrite_call_expr_valist): ...here. Call (rewrite_call_expr_valist): ...here. Call
build_call_expr_loc_array. build_call_expr_loc_array.
...@@ -2261,7 +2261,7 @@ m68hc11_print_operand (FILE *file, rtx op, int letter) ...@@ -2261,7 +2261,7 @@ m68hc11_print_operand (FILE *file, rtx op, int letter)
case MEM: case MEM:
gcc_assert (TARGET_M6812); gcc_assert (TARGET_M6812);
fprintf (file, "["); fprintf (file, "[");
print_operand_address (file, XEXP (base, 0)); m68hc11_print_operand_address (file, XEXP (base, 0));
fprintf (file, "]"); fprintf (file, "]");
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment