diff options
author | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-13 06:34:58 +0000 |
---|---|---|
committer | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-13 06:34:58 +0000 |
commit | 67957b01c6c384695a345e38f5a3a31212342477 (patch) | |
tree | 9d60646ad0024a9fedfca5a1965f34903d160499 /gcc | |
parent | fc68ceab54a29060364852532ed3b0b7b0818637 (diff) | |
download | gcc-67957b01c6c384695a345e38f5a3a31212342477.tar.gz |
* rtl.h: Move prototypes of rtx_alloc and rtvec_alloc around
to better document the files they're in.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44840 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/rtl.h | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5e43aec464a..52862e71efa 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-08-12 Geoffrey Keating <geoffk@redhat.com> + + * rtl.h: Move prototypes of rtx_alloc and rtvec_alloc around + to better document the files they're in. + 2001-08-12 Zack Weinberg <zackw@panix.com> * recog.h (struct insn_operand_data): Shrink 'mode' field diff --git a/gcc/rtl.h b/gcc/rtl.h index 917242abf26..50ec444a6c9 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -1161,14 +1161,12 @@ extern void optimize_save_area_alloca PARAMS ((rtx)); extern rtx gen_rtx PARAMS ((enum rtx_code, enum machine_mode, ...)); extern rtvec gen_rtvec PARAMS ((int, ...)); - -/* In other files */ -extern rtx rtx_alloc PARAMS ((RTX_CODE)); -extern rtvec rtvec_alloc PARAMS ((int)); extern rtx copy_insn_1 PARAMS ((rtx)); extern rtx copy_insn PARAMS ((rtx)); /* In rtl.c */ +extern rtx rtx_alloc PARAMS ((RTX_CODE)); +extern rtvec rtvec_alloc PARAMS ((int)); extern rtx copy_rtx PARAMS ((rtx)); /* In emit-rtl.c */ |