diff options
author | Mark Mitchell <mmitchell@usa.net> | 1998-03-01 00:08:36 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchell@gcc.gnu.org> | 1998-03-01 00:08:36 +0000 |
commit | 90ca38bbee482c1800f5228527195322d6bdf79b (patch) | |
tree | 6961d4fb9988add7b34fb72a9d3638a5ac37565f /gcc/final.c | |
parent | b9af0782c464e1fdea52ae93836f52ebbce5afc0 (diff) | |
download | gcc-90ca38bbee482c1800f5228527195322d6bdf79b.zip gcc-90ca38bbee482c1800f5228527195322d6bdf79b.tar.gz gcc-90ca38bbee482c1800f5228527195322d6bdf79b.tar.bz2 |
* final.c (final_scan_insn): Undo overzealous removal of `set'.
From-SVN: r18323
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/final.c b/gcc/final.c index f6bd7b2..3dd1ef1 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -1393,6 +1393,10 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes) int nopeepholes; { register int i; +#ifdef HAVE_cc0 + rtx set; +#endif + insn_counter++; /* Ignore deleted insns. These can occur when we split insns (due to a |