OSDN Git Service

* df.h (transfer_function_sbitmap): Use PARAMS around argument
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 26 Nov 2001 19:36:09 +0000 (19:36 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 26 Nov 2001 19:36:09 +0000 (19:36 +0000)
        list in function prototypes.
        (transfer_function_bitmap): Likewise.

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

gcc/ChangeLog
gcc/df.h

index 527431f..27f4515 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 4d9ea0f..0a3f2d4 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 *,