Commit 702020d6 by Kazu Hirata Committed by Kazu Hirata

1750a.c: Fix comment formatting.

	* config/1750a/1750a.c: Fix comment formatting.
	* config/1750a/1750a.h: Likewise.

From-SVN: r46871
parent cc9a08e0
2001-11-08 Kazu Hirata <kazu@hxi.com>
* config/1750a/1750a.c: Fix comment formatting.
* config/1750a/1750a.h: Likewise.
2001-11-08 Phil Edwards <pedwards@disaster.jaj.com> 2001-11-08 Phil Edwards <pedwards@disaster.jaj.com>
* configure.in (--enable-languages): Be more permissive about * configure.in (--enable-languages): Be more permissive about
......
...@@ -117,7 +117,7 @@ output_function_prologue (file, size) ...@@ -117,7 +117,7 @@ output_function_prologue (file, size)
The function epilogue should not depend on the current stack The function epilogue should not depend on the current stack
pointer! It should use the frame pointer only. This is mandatory pointer! It should use the frame pointer only. This is mandatory
because of alloca; we also take advantage of it to omit stack because of alloca; we also take advantage of it to omit stack
adjustments before returning. */ adjustments before returning. */
static void static void
output_function_epilogue (file, size) output_function_epilogue (file, size)
...@@ -157,7 +157,7 @@ notice_update_cc (exp) ...@@ -157,7 +157,7 @@ notice_update_cc (exp)
/* Jumps do not alter the cc's. */ /* Jumps do not alter the cc's. */
if (SET_DEST (exp) == pc_rtx) if (SET_DEST (exp) == pc_rtx)
return; return;
/* Moving a register or constant into memory doesn't alter the cc's. */ /* Moving a register or constant into memory doesn't alter the cc's. */
if (GET_CODE (SET_DEST (exp)) == MEM if (GET_CODE (SET_DEST (exp)) == MEM
&& (src_code == REG || src_code == CONST_INT)) && (src_code == REG || src_code == CONST_INT))
return; return;
...@@ -182,7 +182,7 @@ notice_update_cc (exp) ...@@ -182,7 +182,7 @@ notice_update_cc (exp)
cc_status.value1 = SET_SRC (exp); cc_status.value1 = SET_SRC (exp);
return; return;
} }
/* Anything else will set cc_status. */ /* Anything else will set cc_status. */
cc_status.flags = CC_NO_OVERFLOW; cc_status.flags = CC_NO_OVERFLOW;
cc_status.value1 = SET_SRC (exp); cc_status.value1 = SET_SRC (exp);
cc_status.value2 = SET_DEST (exp); cc_status.value2 = SET_DEST (exp);
......
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