diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2006-03-05 17:31:20 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2006-03-05 17:31:20 +0000 |
commit | acfc4f0a8577fa8bc082519fd76a29bf299ba50c (patch) | |
tree | 4cc6ccda026cab0a381afaf3bb26c16e4881416d /gcc/basic-block.h | |
parent | d42ee77ad0a9a063839860c32eda232884def053 (diff) | |
download | gcc-acfc4f0a8577fa8bc082519fd76a29bf299ba50c.zip gcc-acfc4f0a8577fa8bc082519fd76a29bf299ba50c.tar.gz gcc-acfc4f0a8577fa8bc082519fd76a29bf299ba50c.tar.bz2 |
tree-ssa-threadupdate.c (rediscover_loops_after_threading): Remove.
* tree-ssa-threadupdate.c (rediscover_loops_after_threading):
Remove.
* basic-block.h: Remove the extern for
rediscover_loops_after_threading.
From-SVN: r111734
Diffstat (limited to 'gcc/basic-block.h')
-rw-r--r-- | gcc/basic-block.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/basic-block.h b/gcc/basic-block.h index 8179e09..a07a517 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -414,10 +414,6 @@ struct control_flow_graph GTY(()) #define BASIC_BLOCK(N) (VEC_index (basic_block, basic_block_info, (N))) #define SET_BASIC_BLOCK(N,BB) (VEC_replace (basic_block, basic_block_info, (N), (BB))) -/* TRUE if we should re-run loop discovery after threading jumps, FALSE - otherwise. */ -extern bool rediscover_loops_after_threading; - /* For iterating over basic blocks. */ #define FOR_BB_BETWEEN(BB, FROM, TO, DIR) \ for (BB = FROM; BB != TO; BB = BB->DIR) |