diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-11-26 19:36:09 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-11-26 19:36:09 +0000 |
commit | 0866df67b8433acc39ad787aa68af56c5b83fb0a (patch) | |
tree | 32260983e47437139545dbd783c6c35aca076144 /gcc/df.h | |
parent | e0598aab137706d2d4aa69dce753c14875570245 (diff) | |
download | gcc-0866df67b8433acc39ad787aa68af56c5b83fb0a.tar.gz |
* df.h (transfer_function_sbitmap): Use PARAMS around argument
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
Diffstat (limited to 'gcc/df.h')
-rw-r--r-- | gcc/df.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 *, |