aboutsummaryrefslogtreecommitdiff
path: root/gcc/sibcall.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@hxi.com>2001-08-17 21:23:12 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2001-08-17 21:23:12 +0000
commit2d76cb1aba961fe2dc84fd3b1dad04181affd103 (patch)
treed04df8e015f11f7c3f1a689524aaa53d9d41c76a /gcc/sibcall.c
parent171262081c9cd444023acbd55ef265e9cffcd47b (diff)
downloadgcc-2d76cb1aba961fe2dc84fd3b1dad04181affd103.zip
gcc-2d76cb1aba961fe2dc84fd3b1dad04181affd103.tar.gz
gcc-2d76cb1aba961fe2dc84fd3b1dad04181affd103.tar.bz2
sbitmap.c: Fix comment formatting.
* sbitmap.c: Fix comment formatting. * sched-deps.c: Likewise. * sibcall.c: Likewise. * simplify-rtx.c: Likewise. * ssa.c: Likewise. * ssa-ccp.c: Likewise. * stor-layout.c: Likewise. * timevar.c: Likewise. * toplev.c: Likewise. * unwind-dw2.c: Likewise. * unwind-dw2-fde.c: Likewise. * varasm.c: Likewise. From-SVN: r44983
Diffstat (limited to 'gcc/sibcall.c')
-rw-r--r--gcc/sibcall.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/sibcall.c b/gcc/sibcall.c
index 91cc748..a6638b7 100644
--- a/gcc/sibcall.c
+++ b/gcc/sibcall.c
@@ -408,7 +408,7 @@ uses_addressof (x)
if (code == MEM)
return 0;
- /* Scan all subexpressions. */
+ /* Scan all subexpressions. */
fmt = GET_RTX_FORMAT (code);
for (i = 0; i < GET_RTX_LENGTH (code); i++, fmt++)
{
@@ -518,7 +518,7 @@ purge_mem_unchanging_flag (x)
return;
}
- /* Scan all subexpressions. */
+ /* Scan all subexpressions. */
fmt = GET_RTX_FORMAT (code);
for (i = 0; i < GET_RTX_LENGTH (code); i++, fmt++)
{
@@ -553,7 +553,7 @@ replace_call_placeholder (insn, use)
if (XEXP (PATTERN (insn), 3))
LABEL_PRESERVE_P (XEXP (PATTERN (insn), 3)) = 0;
- /* "Delete" the placeholder insn. */
+ /* "Delete" the placeholder insn. */
PUT_CODE (insn, NOTE);
NOTE_SOURCE_FILE (insn) = 0;
NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
@@ -703,7 +703,7 @@ optimize_sibling_and_tail_recursive_calls ()
|| (call_block->succ->dest != EXIT_BLOCK_PTR
&& call_block->succ->dest != alternate_exit)
/* If this call doesn't end the block, there are operations at
- the end of the block which we must execute after returning. */
+ the end of the block which we must execute after returning. */
|| ! call_ends_block_p (insn, call_block->end))
sibcall = 0, tailrecursion = 0;