df.h (transfer_function_sbitmap): Use PARAMS around argument list in function prototypes.
* df.h (transfer_function_sbitmap): Use PARAMS around argument list in function prototypes. (transfer_function_bitmap): Likewise. From-SVN: r47350
This commit is contained in:
parent
b0b3cf5e33
commit
afb14002b6
2 changed files with 10 additions and 4 deletions
|
@ -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.
|
||||
|
|
8
gcc/df.h
8
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 *,
|
||||
|
|
Loading…
Add table
Reference in a new issue