df.h (transfer_function_sbitmap): Use PARAMS around argument list in function prototypes.
authorJeffrey A Law <law@cygnus.com>
Mon, 26 Nov 2001 19:36:09 +0000 (19:36 +0000)
committerJeff Law <law@gcc.gnu.org>
Mon, 26 Nov 2001 19:36:09 +0000 (12:36 -0700)
        * df.h (transfer_function_sbitmap): Use PARAMS around argument
        list in function prototypes.
        (transfer_function_bitmap): Likewise.

From-SVN: r47350

gcc/ChangeLog
gcc/df.h

index 527431f41684dca2993e52709b05e84a19687cbf..27f4515fbc4c231f956f5e1d78c7215d22f77a42 100644 (file)
@@ -1,3 +1,9 @@
+Mon Nov 26 12:37:05 2001  Jeffrey A Law  (law@cygnus.com)
+
+       * df.h (transfer_function_sbitmap): Use PARAMS around argument
+       list in function prototypes.
+       (transfer_function_bitmap): Likewise.
+
 2001-11-26  Loren J. Rittle  <ljrittle@acm.org>
 
        * config/stormy16/stormy16.h: Remove DEFAULT_VTABLE_THUNKS.
index 4d9ea0f30f5e1cea8dee4370e3c6b3b479fce271..0a3f2d4f5ad45cc89ec24847f54bed145a158ab8 100644 (file)
--- a/gcc/df.h
+++ b/gcc/df.h
@@ -318,10 +318,10 @@ enum df_flow_dir
     BACKWARD
   };
 
-typedef void (*transfer_function_sbitmap) (int, int *, sbitmap, sbitmap, 
-                                          sbitmap, sbitmap, void *);
-typedef void (*transfer_function_bitmap) (int, int *, bitmap, bitmap,
-                                         bitmap, bitmap, void *);
+typedef void (*transfer_function_sbitmap) PARAMS ((int, int *, sbitmap, sbitmap, 
+                                          sbitmap, sbitmap, void *));
+typedef void (*transfer_function_bitmap) PARAMS ((int, int *, bitmap, bitmap,
+                                         bitmap, bitmap, void *));
 
 extern void iterative_dataflow_sbitmap PARAMS ((sbitmap *, sbitmap *, 
                                                sbitmap *, sbitmap *,