diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/final.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c38eaa4..35e658c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Mon Feb 4 19:23:19 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> + + * final.c (final_scan_insn): Add case for NOTE_INSN_LOOP_END_TOP_COND. + 2002-02-04 Richard Henderson <rth@redhat.com> * combine.c (nonzero_bits): Re-introduce special case for diff --git a/gcc/final.c b/gcc/final.c index ec3b1c7..3fd93b4 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -1851,6 +1851,7 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes) case NOTE_INSN_DELETED: case NOTE_INSN_LOOP_BEG: case NOTE_INSN_LOOP_END: + case NOTE_INSN_LOOP_END_TOP_COND: case NOTE_INSN_LOOP_CONT: case NOTE_INSN_LOOP_VTOP: case NOTE_INSN_FUNCTION_END: |