diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-01-23 19:18:39 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-01-23 19:18:39 +0000 |
commit | 6d77cdc3aab2d3a3ae6a5bc19db953a53833f5ab (patch) | |
tree | 2bd59190c4ac5ef25df609ce46ea24f278ad220c /gcc/gcse.c | |
parent | 15f0d971d195829dfea412461cf9796381edbeda (diff) | |
download | gcc-6d77cdc3aab2d3a3ae6a5bc19db953a53833f5ab.zip gcc-6d77cdc3aab2d3a3ae6a5bc19db953a53833f5ab.tar.gz gcc-6d77cdc3aab2d3a3ae6a5bc19db953a53833f5ab.tar.bz2 |
* gcse.c (null_pointer_info): Remove.
From-SVN: r94122
Diffstat (limited to 'gcc/gcse.c')
-rw-r--r-- | gcc/gcse.c | 14 |
1 files changed, 0 insertions, 14 deletions
@@ -524,20 +524,6 @@ static int global_copy_prop_count; /* For available exprs */ static sbitmap *ae_kill, *ae_gen; - -/* Objects of this type are passed around by the null-pointer check - removal routines. */ -struct null_pointer_info -{ - /* The basic block being processed. */ - basic_block current_block; - /* The first register to be handled in this pass. */ - unsigned int min_reg; - /* One greater than the last register to be handled in this pass. */ - unsigned int max_reg; - sbitmap *nonnull_local; - sbitmap *nonnull_killed; -}; static void compute_can_copy (void); static void *gmalloc (size_t) ATTRIBUTE_MALLOC; |