diff options
author | Andrew MacLeod <amacleod@redhat.com> | 2015-06-17 18:53:03 +0000 |
---|---|---|
committer | Andrew Macleod <amacleod@gcc.gnu.org> | 2015-06-17 18:53:03 +0000 |
commit | 2bb8cb5896c5133b9397da7ab97127c062a774b3 (patch) | |
tree | ec5e8298fd9f24f891d654baf86e6add87b61000 /gcc/genattrtab.c | |
parent | a1ceb6041e32e5ab4b0c38dc5b52fe9d82948719 (diff) | |
download | gcc-2bb8cb5896c5133b9397da7ab97127c062a774b3.zip gcc-2bb8cb5896c5133b9397da7ab97127c062a774b3.tar.gz gcc-2bb8cb5896c5133b9397da7ab97127c062a774b3.tar.bz2 |
function.h (struct rtl_data): Remove struct and accessor macros.
2015-06-17 Andrew MacLeod <amacleod@redhat.com>
* function.h (struct rtl_data): Remove struct and accessor macros.
* emit-rtl.h (struct rtl_data): Relocate to here.
* Makefile.in (GTFILES): Add emit-rtl.h.
* df-core.c: Include emit-rtl.h.
* genattrtab.c: Likewise.
* genconditions.c: Likewise.
* genpreds.c: Likewise.
* genrecog.c: Likewise.
* regcprop.c: Likewise.
* resource.c: Likewise.
* sched-rgn.c: Likewise.
* config/aarch64/cortex-a57-fma-steering.c: Likewise.
* config/i386/winnt.c: Likewise.
From-SVN: r224573
Diffstat (limited to 'gcc/genattrtab.c')
-rw-r--r-- | gcc/genattrtab.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/genattrtab.c b/gcc/genattrtab.c index 2beb7ee..2ec02c3 100644 --- a/gcc/genattrtab.c +++ b/gcc/genattrtab.c @@ -5127,6 +5127,7 @@ write_header (FILE *outf) fprintf (outf, "#include \"toplev.h\"\n"); fprintf (outf, "#include \"flags.h\"\n"); fprintf (outf, "#include \"function.h\"\n"); + fprintf (outf, "#include \"emit-rtl.h\"\n"); fprintf (outf, "#include \"predict.h\"\n"); fprintf (outf, "\n"); fprintf (outf, "#define operands recog_data.operand\n\n"); |