diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2010-06-10 20:21:35 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2010-06-10 20:21:35 +0000 |
commit | d2a3ce4e3374de54b231d98bd78613c8dc18d9a4 (patch) | |
tree | 43c04315a7c8d22053182e57daa6df240867adeb /gcc/read-md.h | |
parent | 1069247787d6d8c1093b3f9a8ab62c95d1a8501c (diff) | |
download | gcc-d2a3ce4e3374de54b231d98bd78613c8dc18d9a4.zip gcc-d2a3ce4e3374de54b231d98bd78613c8dc18d9a4.tar.gz gcc-d2a3ce4e3374de54b231d98bd78613c8dc18d9a4.tar.bz2 |
read-md.h (read_rtx_lineno): Rename to...
gcc/
* read-md.h (read_rtx_lineno): Rename to...
(read_md_lineno): ...this.
(read_rtx_filename): Rename to...
(read_md_filename): ...this.
(copy_rtx_ptr_loc): Rename to...
(copy_md_ptr_loc): ...this.
(print_rtx_ptr_loc): Rename to...
(print_md_ptr_loc): ...this.
* read-md.c: Likewise. Update references after renaming.
(string_obstack): Replace RTL with MD in comment.
(set_rtx_ptr_loc): Rename to...
(set_md_ptr_loc): ...this.
(get_rtx_ptr_loc): Rename to...
(get_md_ptr_loc): ...this.
* genconditions.c: Update references after renaming.
* genemit.c: Likewise.
* genoutput.c: Likewise.
* genpreds.c: Likewise.
* gensupport.c: Likewise.
* read-rtl.c: Likewise.
From-SVN: r160571
Diffstat (limited to 'gcc/read-md.h')
-rw-r--r-- | gcc/read-md.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/read-md.h b/gcc/read-md.h index ec9dcdd..dd492be 100644 --- a/gcc/read-md.h +++ b/gcc/read-md.h @@ -21,12 +21,12 @@ along with GCC; see the file COPYING3. If not see #include "obstack.h" -extern int read_rtx_lineno; -extern const char *read_rtx_filename; +extern int read_md_lineno; +extern const char *read_md_filename; extern struct obstack string_obstack; -extern void copy_rtx_ptr_loc (const void *, const void *); -extern void print_rtx_ptr_loc (const void *); +extern void copy_md_ptr_loc (const void *, const void *); +extern void print_md_ptr_loc (const void *); extern const char *join_c_conditions (const char *, const char *); extern void print_c_condition (const char *); extern void message_with_line (int, const char *, ...) ATTRIBUTE_PRINTF_2; |