diff options
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/tree-ssa-live.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5e490f9..1b32875 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-09-28 Diego Novillo <dnovillo@redhat.com> + + * tree-ssa-live.c (calculate_live_on_entry): Fix warnings + with --disable-checking. + 2004-09-28 Devang Patel <dpatel@apple.com> * tree-pretty-print.c (dump_generic_node): Print vector types. diff --git a/gcc/tree-ssa-live.c b/gcc/tree-ssa-live.c index d716a7e..3a6e603 100644 --- a/gcc/tree-ssa-live.c +++ b/gcc/tree-ssa-live.c @@ -570,8 +570,8 @@ calculate_live_on_entry (var_map map) bitmap_iterator bi; #ifdef ENABLE_CHECKING int num; -#endif edge_iterator ei; +#endif saw_def = BITMAP_XMALLOC (); |