From 2d76cb1aba961fe2dc84fd3b1dad04181affd103 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Fri, 17 Aug 2001 21:23:12 +0000 Subject: 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 --- gcc/sched-deps.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'gcc/sched-deps.c') diff --git a/gcc/sched-deps.c b/gcc/sched-deps.c index 3662b7a..d7cb549 100644 --- a/gcc/sched-deps.c +++ b/gcc/sched-deps.c @@ -63,7 +63,7 @@ static int reg_pending_sets_all; Each insn has associated bitmaps for its dependencies. Each bitmap has enough entries to represent a dependency on any other insn in the insn chain. All bitmap for true dependencies cache is - allocated then the rest two ones are also allocated. */ + allocated then the rest two ones are also allocated. */ static sbitmap *true_dependency_cache; static sbitmap *anti_dependency_cache; static sbitmap *output_dependency_cache; @@ -71,7 +71,7 @@ static sbitmap *output_dependency_cache; /* To speed up checking consistency of formed forward insn dependencies we use the following cache. Another possible solution could be switching off checking duplication of insns in forward - dependencies. */ + dependencies. */ #ifdef ENABLE_CHECKING static sbitmap *forward_dependency_cache; #endif @@ -299,7 +299,7 @@ add_dependence (insn, elem, dep_type) { #ifdef INSN_SCHEDULING /* Clear corresponding cache entry because type of the link - may be changed. */ + may be changed. */ if (true_dependency_cache != NULL) { if (REG_NOTE_KIND (link) == REG_DEP_ANTI) @@ -321,7 +321,7 @@ add_dependence (insn, elem, dep_type) #ifdef INSN_SCHEDULING /* If we are adding a dependency to INSN's LOG_LINKs, then - note that in the bitmap caches of dependency information. */ + note that in the bitmap caches of dependency information. */ if (true_dependency_cache != NULL) { if ((int)REG_NOTE_KIND (link) == 0) @@ -347,7 +347,7 @@ add_dependence (insn, elem, dep_type) #ifdef INSN_SCHEDULING /* If we are adding a dependency to INSN's LOG_LINKs, then note that - in the bitmap caches of dependency information. */ + in the bitmap caches of dependency information. */ if (true_dependency_cache != NULL) { if ((int)dep_type == 0) -- cgit v1.1