diff options
author | YamaArashi <shadow962@live.com> | 2016-02-16 01:03:54 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-02-16 01:03:54 -0800 |
commit | ecae31d652106c1f3b7429570de013c3bbf33e7a (patch) | |
tree | 6981957216b10aad71c792714a25c5750611754e /gcc/machmode.h | |
parent | 9382e1a90b218b4b93bf53c01ef163925cf224dc (diff) |
get rid of PROTO macros
Diffstat (limited to 'gcc/machmode.h')
-rwxr-xr-x | gcc/machmode.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/machmode.h b/gcc/machmode.h index 8d42416..e9d1519 100755 --- a/gcc/machmode.h +++ b/gcc/machmode.h @@ -185,16 +185,16 @@ extern unsigned char mode_wider_mode[]; If LIMIT is nonzero, then don't use modes bigger than MAX_FIXED_MODE_SIZE. The value is BLKmode if no other mode is found. */ -extern enum machine_mode mode_for_size PROTO((unsigned int, enum mode_class, int)); +extern enum machine_mode mode_for_size (unsigned int, enum mode_class, int); /* Return an integer mode of the exact same size as the input mode, or BLKmode on failure. */ -extern enum machine_mode int_mode_for_mode PROTO((enum machine_mode)); +extern enum machine_mode int_mode_for_mode (enum machine_mode); /* Find the best mode to use to access a bit field. */ -extern enum machine_mode get_best_mode PROTO((int, int, int, enum machine_mode, int)); +extern enum machine_mode get_best_mode (int, int, int, enum machine_mode, int); /* Determine alignment, 1<=result<=BIGGEST_ALIGNMENT. */ |