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/df.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/df.h')
-rw-r--r-- | gcc/df.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -34,7 +34,7 @@ along with GCC; see the file COPYING3. If not see #include "timevar.h" struct dataflow; -struct df; +struct df_d; struct df_problem; struct df_link; struct df_insn_info; @@ -527,7 +527,7 @@ struct df_reg_info used by owners of the problem. ----------------------------------------------------------------------------*/ -struct df +struct df_d { /* The set of problems to be solved is stored in two arrays. In @@ -877,7 +877,7 @@ struct df_byte_lr_bb_info /* This is used for debugging and for the dumpers to find the latest instance so that the df info can be added to the dumps. This should not be used by regular code. */ -extern struct df *df; +extern struct df_d *df; #define df_scan (df->problems_by_index[DF_SCAN]) #define df_rd (df->problems_by_index[DF_RD]) #define df_lr (df->problems_by_index[DF_LR]) |