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/integrate.h | |
parent | 9382e1a90b218b4b93bf53c01ef163925cf224dc (diff) |
get rid of PROTO macros
Diffstat (limited to 'gcc/integrate.h')
-rwxr-xr-x | gcc/integrate.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/integrate.h b/gcc/integrate.h index 23e2e56..95e7388 100755 --- a/gcc/integrate.h +++ b/gcc/integrate.h @@ -116,14 +116,14 @@ struct inline_remap /* Return a copy of an rtx (as needed), substituting pseudo-register, labels, and frame-pointer offsets as necessary. */ -extern rtx copy_rtx_and_substitute PROTO((rtx, struct inline_remap *)); +extern rtx copy_rtx_and_substitute (rtx, struct inline_remap *); -extern void try_constants PROTO((rtx, struct inline_remap *)); +extern void try_constants (rtx, struct inline_remap *); -extern void mark_stores PROTO((rtx, rtx)); +extern void mark_stores (rtx, rtx); /* Return the label indicated. */ -extern rtx get_label_from_map PROTO((struct inline_remap *, int)); +extern rtx get_label_from_map (struct inline_remap *, int); /* Set the label indicated. */ #define set_label_in_map(MAP, I, X) ((MAP)->label_map[I] = (X)) |