* basic-block.h (flow_bb_inside_loop_p): Correct prototype.
authorsayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 19 Dec 2002 02:59:15 +0000 (02:59 +0000)
committersayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 19 Dec 2002 02:59:15 +0000 (02:59 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60279 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/basic-block.h

index d395b03..c06eb68 100644 (file)
@@ -1,10 +1,14 @@
+2002-12-18  Roger Sayle  <roger@eyesopen.com>
+
+       * basic-block.h (flow_bb_inside_loop_p): Correct prototype.
+
 2002-12-18  Aldy Hernandez  <aldyh@redhat.com>
 
        * config/rs6000/altivec.h (vec_cmplt macro): Reverse arguments in
        macro.
        (vec_cmplt C++ functions): Reverse arguments.
 
-2002-11-18  Geoffrey Keating  <geoffk@apple.com>
+2002-12-18  Geoffrey Keating  <geoffk@apple.com>
 
        * config/rs6000/t-rs6000: Move contents to t-fprules,
        add rules for dependencies of rs6000.o and to build rs6000-c.o
index a72b9b9..c57c89c 100644 (file)
@@ -752,8 +752,10 @@ extern void free_aux_for_edges             PARAMS ((void));
    it being unused.  */
 extern void verify_flow_info           PARAMS ((void));
 extern bool flow_loop_outside_edge_p   PARAMS ((const struct loop *, edge));
-extern bool flow_loop_nested_p PARAMS ((const struct loop *, const struct loop *));
-extern bool flow_bb_inside_loop_p       PARAMS ((const struct loop *, basic_block));
+extern bool flow_loop_nested_p PARAMS ((const struct loop *,
+                                       const struct loop *));
+extern bool flow_bb_inside_loop_p       PARAMS ((const struct loop *,
+                                                const basic_block));
 extern basic_block *get_loop_body       PARAMS ((const struct loop *));
 extern int dfs_enumerate_from           PARAMS ((basic_block, int,
                                         bool (*)(basic_block, void *),