From: Geoffrey Keating Date: Mon, 13 Aug 2001 06:34:58 +0000 (+0000) Subject: rtl.h: Move prototypes of rtx_alloc and rtvec_alloc around to better document the... X-Git-Tag: prereleases/libstdc++-3.0.95~2695 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5fe2e41b3f6d65ee72471d7189dc513cf3ba3683;p=thirdparty%2Fgcc.git rtl.h: Move prototypes of rtx_alloc and rtvec_alloc around to better document the... * rtl.h: Move prototypes of rtx_alloc and rtvec_alloc around to better document the files they're in. From-SVN: r44840 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5e43aec464a2..52862e71efad 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-08-12 Geoffrey Keating + + * rtl.h: Move prototypes of rtx_alloc and rtvec_alloc around + to better document the files they're in. + 2001-08-12 Zack Weinberg * recog.h (struct insn_operand_data): Shrink 'mode' field diff --git a/gcc/rtl.h b/gcc/rtl.h index 917242abf26a..50ec444a6c9e 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 */