diff options
author | Jan Hubicka <jh@suse.cz> | 2002-06-02 19:18:58 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2002-06-02 17:18:58 +0000 |
commit | eae4bc56ee765027101b05a66c3c79439c34b7b9 (patch) | |
tree | 01a22b3a56bc3bc2ecd3df078c9724e071b3eb4e /gcc/cfgrtl.c | |
parent | c442c002227503e34372613f314d1e78579cb17a (diff) | |
download | gcc-eae4bc56ee765027101b05a66c3c79439c34b7b9.zip gcc-eae4bc56ee765027101b05a66c3c79439c34b7b9.tar.gz gcc-eae4bc56ee765027101b05a66c3c79439c34b7b9.tar.bz2 |
cfgrtl.c (commit_one_edge_insertion): Fix warning.
* cfgrtl.c (commit_one_edge_insertion): Fix warning.
* gcse.c (bypass_conditional_jumps): CSE out single_set call.
From-SVN: r54175
Diffstat (limited to 'gcc/cfgrtl.c')
-rw-r--r-- | gcc/cfgrtl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c index 4509fa4..f721b12 100644 --- a/gcc/cfgrtl.c +++ b/gcc/cfgrtl.c @@ -1352,7 +1352,7 @@ commit_one_edge_insertion (e, watch_calls) int watch_calls; { rtx before = NULL_RTX, after = NULL_RTX, insns, tmp, last; - basic_block bb; + basic_block bb = NULL; /* Pull the insns off the edge now since the edge might go away. */ insns = e->insns; |