OSDN Git Service

* ssa-ccp.c (examine_flow_edges): Use old-style definition, not
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 10 Nov 2001 15:48:36 +0000 (15:48 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 10 Nov 2001 15:48:36 +0000 (15:48 +0000)
        an ANSI/ISO definitino.
        (ssa_const_prop): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46917 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/ssa-ccp.c

index 67dacd8..301c8a1 100644 (file)
@@ -1,3 +1,9 @@
+Sat Nov 10 08:50:50 2001  Jeffrey A Law  (law@cygnus.com)
+
+       * ssa-ccp.c (examine_flow_edges): Use old-style definition, not
+       an ANSI/ISO definitino.
+       (ssa_const_prop): Likewise.
+
 2001-11-10  Aldy Hernandez  <aldyh@redhat.com>
 
        * config/rs6000/rs6000.c (rs6000_reg_names): Remove leading "v" or
index c2f1b78..381ee9a 100644 (file)
@@ -624,7 +624,7 @@ visit_expression (insn, block)
 /* Iterate over the FLOW_EDGES work list.  Simulate the target block
    for each edge.  */
 static void
-examine_flow_edges (void)
+examine_flow_edges ()
 {
   while (flow_edges != NULL)
     {
@@ -981,7 +981,7 @@ ssa_ccp_df_delete_unreachable_insns ()
    operate on so that it can be called for sub-graphs.  */
 
 void
-ssa_const_prop (void)
+ssa_const_prop ()
 {
   unsigned int i;
   edge curredge;