diff options
author | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-04-19 13:03:06 +0000 |
---|---|---|
committer | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-04-19 13:03:06 +0000 |
commit | a3d80b232e439ac48a70a32eb826b9c7034bc4c8 (patch) | |
tree | ab45593960e680b3f160402e0a31d1af0ffc1eab /gcc/bb-reorder.c | |
parent | bff61684e1b4ba6de3fd444c6402c94c9bd9aa84 (diff) | |
download | ppe42-gcc-a3d80b232e439ac48a70a32eb826b9c7034bc4c8.tar.gz ppe42-gcc-a3d80b232e439ac48a70a32eb826b9c7034bc4c8.zip |
2004-04-19 Andrew PInski <pinskia@physics.uc.edu>
PR bootstrap/15009
* bb-reorder.c (fix_up_fall_thru_edges): Init cond_jump.
PR bootstrap/14999
* builtins.c (fold_builtin_cabs): Mark fndecl as unused.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@80849 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/bb-reorder.c')
-rw-r--r-- | gcc/bb-reorder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/bb-reorder.c b/gcc/bb-reorder.c index 2d728078889..e60151836e1 100644 --- a/gcc/bb-reorder.c +++ b/gcc/bb-reorder.c @@ -1409,7 +1409,7 @@ fix_up_fall_thru_edges (void) edge succ1; edge succ2; edge fall_thru; - edge cond_jump; + edge cond_jump = NULL; edge e; bool cond_jump_crosses; int invert_worked; |