diff options
author | Diego Novillo <dnovillo@redhat.com> | 2004-09-28 18:14:33 +0000 |
---|---|---|
committer | Diego Novillo <dnovillo@gcc.gnu.org> | 2004-09-28 14:14:33 -0400 |
commit | c3b8e9aa7f5dbfc1090b5dc8a73be8fe3f94c5ec (patch) | |
tree | e1cedd4d0e4fe4b41ee179f27e3863fff8dbe5bb /gcc | |
parent | 56bac5af0ffca1275e0b49d278b5d67aaeb6eac0 (diff) | |
download | gcc-c3b8e9aa7f5dbfc1090b5dc8a73be8fe3f94c5ec.zip gcc-c3b8e9aa7f5dbfc1090b5dc8a73be8fe3f94c5ec.tar.gz gcc-c3b8e9aa7f5dbfc1090b5dc8a73be8fe3f94c5ec.tar.bz2 |
tree-ssa-live.c (calculate_live_on_entry): Fix warnings with --disable-checking.
* tree-ssa-live.c (calculate_live_on_entry): Fix warnings
with --disable-checking.
From-SVN: r88241
Diffstat (limited to 'gcc')
-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 (); |