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 | |
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')
-rw-r--r-- | gcc/ChangeLog | 8 | ||||
-rw-r--r-- | gcc/bb-reorder.c | 2 | ||||
-rw-r--r-- | gcc/builtins.c | 2 |
3 files changed, 10 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b63d0395ea8..688d0c59530 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,11 @@ +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. + 2004-04-19 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> * expmed.c (expand_mult_highpart_adjust): Make OP1 valid for MODE. 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; diff --git a/gcc/builtins.c b/gcc/builtins.c index a87d79291b6..707a2cdb929 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -5944,7 +5944,7 @@ fold_trunc_transparent_mathfn (tree exp) type. Return NULL_TREE if no simplification can be made. */ static tree -fold_builtin_cabs (tree fndecl, tree arglist, tree type) +fold_builtin_cabs (tree fndecl ATTRIBUTE_UNUSED, tree arglist, tree type) { tree arg; |