diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2002-07-23 19:19:33 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2002-07-23 19:19:33 +0000 |
commit | 10d6af32dd368c41b5796bcd29e31177c05a416c (patch) | |
tree | 7c167bc3db68e8371493456ff6fe70c556fdc5fd /gcc/genautomata.c | |
parent | 6aaae39ae576601d0b06c56d89e3ee804581a35e (diff) | |
download | gcc-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/genautomata.c')
-rw-r--r-- | gcc/genautomata.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/genautomata.c b/gcc/genautomata.c index a43b983..08f8173 100644 --- a/gcc/genautomata.c +++ b/gcc/genautomata.c @@ -595,14 +595,8 @@ static struct obstack irp; #define VLA_HWINT_BEGIN(vla) (&VARRAY_WIDE_INT ((vla).varray, 0)) -/* Do not use side effects in the macro argument. */ -#define VLA_HWINT_LAST(vla) (&VARRAY_WIDE_INT ((vla).varray, \ - (vla).length - 1)) - #define VLA_HWINT_NULLIFY(vla) ((vla).length = 0) -#define VLA_HWINT_SHORTEN(vla, n) ((vla).length -= (n)) - #define VLA_HWINT_EXPAND(vla, n) \ do { \ vla_hwint_t *const expand_vla_ptr = &(vla); \ |