diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-05-09 12:02:29 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-05-09 12:02:29 +0000 |
commit | 786de7eb9aaaf39f96248b6d42316b2aa4e9bf63 (patch) | |
tree | 8dfb059637bc4dfe3718b626a8be035328c2a665 /gcc/sched-deps.c | |
parent | b7764693d645c516a9b1be36fce35b12731fffb6 (diff) | |
download | gcc-786de7eb9aaaf39f96248b6d42316b2aa4e9bf63.zip gcc-786de7eb9aaaf39f96248b6d42316b2aa4e9bf63.tar.gz gcc-786de7eb9aaaf39f96248b6d42316b2aa4e9bf63.tar.bz2 |
sbitmap.c: Fix formatting.
* sbitmap.c: Fix formatting.
* scan.c: Likewise.
* scan-decls.c: Likewise.
* sched-deps.c: Likewise.
* sched-ebb.c: Likewise.
* sched-rgn.c: Likewise.
* sched-vis.c: Likewise.
* sdbout.c: Likewise.
* sibcall.c: Likewise.
* simplify-rtx.c: Likewise.
* ssa.c: Likewise.
* ssa-ccp.c: Likewise.
* ssa-dce.c: Likewise.
* stmt.c: Likewise.
* stor-layout.c: Likewise.
* stringpool.c: Likewise.
From-SVN: r53324
Diffstat (limited to 'gcc/sched-deps.c')
-rw-r--r-- | gcc/sched-deps.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/sched-deps.c b/gcc/sched-deps.c index 5fb23b7..88bf2b7 100644 --- a/gcc/sched-deps.c +++ b/gcc/sched-deps.c @@ -280,7 +280,7 @@ add_dependence (insn, elem, dep_type) else if (TEST_BIT (output_dependency_cache[INSN_LUID (insn)], INSN_LUID (elem))) present_dep_type = REG_DEP_OUTPUT; - else + else present_p = 0; if (present_p && (int) dep_type >= (int) present_dep_type) return; @@ -313,7 +313,7 @@ add_dependence (insn, elem, dep_type) one, then change the existing dependence to this type. */ if ((int) dep_type < (int) REG_NOTE_KIND (link)) PUT_REG_NOTE_KIND (link, 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. */ @@ -1032,7 +1032,7 @@ sched_analyze_insn (deps, x, insn, loop_notes) } /* If this instruction can throw an exception, then moving it changes - where block boundaries fall. This is mighty confusing elsewhere. + where block boundaries fall. This is mighty confusing elsewhere. Therefore, prevent such an instruction from being moved. */ if (can_throw_internal (insn)) reg_pending_barrier = true; |