aboutsummaryrefslogtreecommitdiff
path: root/gcc/df.c
diff options
context:
space:
mode:
authorNeil Booth <neil@daikokuya.co.uk>2002-07-23 19:19:33 +0000
committerNeil Booth <neil@gcc.gnu.org>2002-07-23 19:19:33 +0000
commit10d6af32dd368c41b5796bcd29e31177c05a416c (patch)
tree7c167bc3db68e8371493456ff6fe70c556fdc5fd /gcc/df.c
parent6aaae39ae576601d0b06c56d89e3ee804581a35e (diff)
downloadgcc-10d6af32dd368c41b5796bcd29e31177c05a416c.zip
gcc-10d6af32dd368c41b5796bcd29e31177c05a416c.tar.gz
gcc-10d6af32dd368c41b5796bcd29e31177c05a416c.tar.bz2
genautomata.c (VLA_HWINT_SHORTEN, [...]): Remove.
* genautomata.c (VLA_HWINT_SHORTEN, VLA_HWINT_LAST): Remove. * df.c (HANDLE_SUBREG, FOR_EACH_BB_IN_BITMAP_REV, FOR_EACH_BB_IN_SBITMAP): Remove. * gcse.c (NEVER_SET, FOLLOW_BACK_EDGES): Remove. * haifa-sched.c (DONE_PRIORITY, MAX_PRIORITY, TAIL_PRIORITY, LAUNCH_PRIORITY, DONE_PRIORITY_P, LOW_PRIORITY_P): Remove. * loop.c (PREFETCH_BLOACK_IN_LOOP_MIN, PREFETCH_LIMIT_TO_SIMULTANEOUS): Remove. * regrename.c (REGNO_MODE_OK_FOR_BASE_P): Remove. From-SVN: r55685
Diffstat (limited to 'gcc/df.c')
-rw-r--r--gcc/df.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/gcc/df.c b/gcc/df.c
index 1507780..ff900ab 100644
--- a/gcc/df.c
+++ b/gcc/df.c
@@ -153,8 +153,6 @@ when optimising a loop, only certain registers are of interest.
Perhaps there should be a bitmap argument to df_analyse to specify
which registers should be analysed? */
-#define HANDLE_SUBREG
-
#include "config.h"
#include "system.h"
#include "rtl.h"
@@ -177,18 +175,6 @@ do { \
EXECUTE_IF_SET_IN_BITMAP (BITMAP, MIN, node_, \
{(BB) = BASIC_BLOCK (node_); CODE;});} while (0)
-#define FOR_EACH_BB_IN_BITMAP_REV(BITMAP, MIN, BB, CODE) \
-do { \
- unsigned int node_; \
- EXECUTE_IF_SET_IN_BITMAP_REV (BITMAP, node_, \
- {(BB) = BASIC_BLOCK (node_); CODE;});} while (0)
-
-#define FOR_EACH_BB_IN_SBITMAP(BITMAP, MIN, BB, CODE) \
-do { \
- unsigned int node_; \
- EXECUTE_IF_SET_IN_SBITMAP (BITMAP, MIN, node_, \
- {(BB) = BASIC_BLOCK (node_); CODE;});} while (0)
-
static struct obstack df_ref_obstack;
static struct df *ddf;