Commit 59e4e217 by Kazu Hirata Committed by Kazu Hirata

c-common.c: Fix comment formatting.

	* c-common.c: Fix comment formatting.
	* c-common.h: Likewise.
	* c-decl.c: Likewise.
	* cppinit.c: Likewise.
	* cpplib.h: Likewise.
	* emit-rtl.c: Likewise.
	* input.h: Likewise.
	* line-map.h: Likewise.
	* opts.c: Likewise.
	* opts.h: Likewise.
	* simplify-rtx.c: Likewise.

From-SVN: r70577
parent 1ee93c1b
2003-08-19 Kazu Hirata <kazu@cs.umass.edu>
* c-common.c: Fix comment formatting.
* c-common.h: Likewise.
* c-decl.c: Likewise.
* cppinit.c: Likewise.
* cpplib.h: Likewise.
* emit-rtl.c: Likewise.
* input.h: Likewise.
* line-map.h: Likewise.
* opts.c: Likewise.
* opts.h: Likewise.
* simplify-rtx.c: Likewise.
2003-08-19 Daniel Jacobowitz <drow@mvista.com> 2003-08-19 Daniel Jacobowitz <drow@mvista.com>
* unwind-c.c: Add libgcc-style exception. * unwind-c.c: Add libgcc-style exception.
......
...@@ -130,7 +130,7 @@ avoid_constant_pool_reference (rtx x) ...@@ -130,7 +130,7 @@ avoid_constant_pool_reference (rtx x)
addr = XEXP (x, 0); addr = XEXP (x, 0);
/* Call target hook to avoid the effects of -fpic etc... */ /* Call target hook to avoid the effects of -fpic etc.... */
addr = (*targetm.delegitimize_address) (addr); addr = (*targetm.delegitimize_address) (addr);
if (GET_CODE (addr) == LO_SUM) if (GET_CODE (addr) == LO_SUM)
...@@ -1041,7 +1041,7 @@ simplify_binary_operation (enum rtx_code code, enum machine_mode mode, ...@@ -1041,7 +1041,7 @@ simplify_binary_operation (enum rtx_code code, enum machine_mode mode,
neg_double (l2, h2, &lv, &hv); neg_double (l2, h2, &lv, &hv);
l2 = lv, h2 = hv; l2 = lv, h2 = hv;
/* .. fall through ... */ /* Fall through.... */
case PLUS: case PLUS:
add_double (l1, h1, l2, h2, &lv, &hv); add_double (l1, h1, l2, h2, &lv, &hv);
...@@ -1542,7 +1542,7 @@ simplify_binary_operation (enum rtx_code code, enum machine_mode mode, ...@@ -1542,7 +1542,7 @@ simplify_binary_operation (enum rtx_code code, enum machine_mode mode,
&& (arg1 = exact_log2 (INTVAL (trueop1))) > 0) && (arg1 = exact_log2 (INTVAL (trueop1))) > 0)
return simplify_gen_binary (LSHIFTRT, mode, op0, GEN_INT (arg1)); return simplify_gen_binary (LSHIFTRT, mode, op0, GEN_INT (arg1));
/* ... fall through ... */ /* Fall through.... */
case DIV: case DIV:
if (trueop1 == CONST1_RTX (mode)) if (trueop1 == CONST1_RTX (mode))
...@@ -1594,7 +1594,7 @@ simplify_binary_operation (enum rtx_code code, enum machine_mode mode, ...@@ -1594,7 +1594,7 @@ simplify_binary_operation (enum rtx_code code, enum machine_mode mode,
return simplify_gen_binary (AND, mode, op0, return simplify_gen_binary (AND, mode, op0,
GEN_INT (INTVAL (op1) - 1)); GEN_INT (INTVAL (op1) - 1));
/* ... fall through ... */ /* Fall through.... */
case MOD: case MOD:
if ((trueop0 == const0_rtx || trueop1 == const1_rtx) if ((trueop0 == const0_rtx || trueop1 == const1_rtx)
...@@ -1611,7 +1611,7 @@ simplify_binary_operation (enum rtx_code code, enum machine_mode mode, ...@@ -1611,7 +1611,7 @@ simplify_binary_operation (enum rtx_code code, enum machine_mode mode,
&& ! side_effects_p (op1)) && ! side_effects_p (op1))
return op0; return op0;
/* ... fall through ... */ /* Fall through.... */
case ASHIFT: case ASHIFT:
case LSHIFTRT: case LSHIFTRT:
...@@ -3163,7 +3163,7 @@ simplify_rtx (rtx x) ...@@ -3163,7 +3163,7 @@ simplify_rtx (rtx x)
if (swap_commutative_operands_p (XEXP (x, 0), XEXP (x, 1))) if (swap_commutative_operands_p (XEXP (x, 0), XEXP (x, 1)))
return simplify_gen_binary (code, mode, XEXP (x, 1), XEXP (x, 0)); return simplify_gen_binary (code, mode, XEXP (x, 1), XEXP (x, 0));
/* ... fall through ... */ /* Fall through.... */
case '2': case '2':
return simplify_binary_operation (code, mode, XEXP (x, 0), XEXP (x, 1)); return simplify_binary_operation (code, mode, XEXP (x, 0), XEXP (x, 1));
......
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