diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-05-15 11:44:51 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-05-15 11:44:51 -0400 |
commit | 3f9f062d453079d61284c31d1a32930738746262 (patch) | |
tree | 4457a7cca4a6d836dea6a97fbfa569156745cc1d /gcc | |
parent | e8095e803fe2b9d3b1200beeb2cbd47d2f419441 (diff) | |
download | gcc-3f9f062d453079d61284c31d1a32930738746262.zip gcc-3f9f062d453079d61284c31d1a32930738746262.tar.gz gcc-3f9f062d453079d61284c31d1a32930738746262.tar.bz2 |
(insert_ap_loads): Initialize AP_IS_LIVE to 0 at start of both loops,
not just first one.
From-SVN: r4472
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/convex/convex.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/config/convex/convex.c b/gcc/config/convex/convex.c index 90d4308..89da18e 100644 --- a/gcc/config/convex/convex.c +++ b/gcc/config/convex/convex.c @@ -1,5 +1,5 @@ /* Subroutines for insn-output.c for Convex. - Copyright (C) 1988,1993 Free Software Foundation, Inc. + Copyright (C) 1988, 1993 Free Software Foundation, Inc. This file is part of GNU CC. @@ -949,6 +949,8 @@ insert_ap_loads () } } while (doagain); + ap_is_live = 0; + for (insn = get_last_insn (); insn; insn = PREV_INSN (insn)) switch (GET_CODE (insn)) { |