diff options
author | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-23 14:25:33 +0000 |
---|---|---|
committer | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-23 14:25:33 +0000 |
commit | f2956fc5d227dc2b06fb749602c9d4e42c480cdc (patch) | |
tree | 8e18fe7df0caef744f6094a5dee3becf74542b30 /gcc/recog.h | |
parent | 3d1a0207b1f2cfe22dbdd2ed966eaf9ea28080a6 (diff) | |
download | gcc-f2956fc5d227dc2b06fb749602c9d4e42c480cdc.tar.gz |
PR other/44644
* df-core.c (struct df): Rename to df_d.
* df.h (struct df): Likewise.
* dse.h (struct df): Remove forward declaration.
* recog.h (struct insn_data): Rename to:
(struct_insn_data_d). Adjusted all users.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@161281 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/recog.h')
-rw-r--r-- | gcc/recog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/recog.h b/gcc/recog.h index 5e820cc0103..c2972abe07d 100644 --- a/gcc/recog.h +++ b/gcc/recog.h @@ -275,7 +275,7 @@ struct insn_operand_data #define INSN_OUTPUT_FORMAT_MULTI 2 /* const char * const * */ #define INSN_OUTPUT_FORMAT_FUNCTION 3 /* const char * (*)(...) */ -struct insn_data +struct insn_data_d { const char *const name; #if HAVE_DESIGNATED_INITIALIZERS @@ -300,5 +300,5 @@ struct insn_data const char output_format; }; -extern const struct insn_data insn_data[]; +extern const struct insn_data_d insn_data[]; extern int peep2_current_count; |