diff options
author | Trevor Saunders <tbsaunde+gcc@tbsaunde.org> | 2015-11-16 02:28:15 +0000 |
---|---|---|
committer | Trevor Saunders <tbsaunde@gcc.gnu.org> | 2015-11-16 02:28:15 +0000 |
commit | c21f7c9dcdda2462e3aca0d701a2c276a5356d3c (patch) | |
tree | 8748eb40c1a89c4468a3ac9bbe010a4f5d252183 /gcc | |
parent | 1f25fa058eceb1b62bf0e7aa50e525690d4bc8ec (diff) | |
download | gcc-c21f7c9dcdda2462e3aca0d701a2c276a5356d3c.zip gcc-c21f7c9dcdda2462e3aca0d701a2c276a5356d3c.tar.gz gcc-c21f7c9dcdda2462e3aca0d701a2c276a5356d3c.tar.bz2 |
PR 68366 - include emit-rtl.h in sdbout.c
Some of the pa target macros rely on macros in emit-rtl.h and sdbout.c
uses some of those macros, which means that sdbout.c needs to include
emit-rtl.h.
gcc/ChangeLog:
2015-11-15 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
PR middle-end/68366
* sdbout.c: Include emit-rtl.h and function.h.
From-SVN: r230402
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/sdbout.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a034df8..09a165d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2015-11-15 Trevor Saunders <tbsaunde+gcc@tbsaunde.org> + + PR middle-end/68366 + * sdbout.c: Include emit-rtl.h and function.h. + 2015-11-15 Gerald Pfeifer <gerald@pfeifer.com> * config/i386/freebsd.h (SUBTARGET32_DEFAULT_CPU): Change to i586. diff --git a/gcc/sdbout.c b/gcc/sdbout.c index f22bc7c..09fa06e 100644 --- a/gcc/sdbout.c +++ b/gcc/sdbout.c @@ -68,6 +68,8 @@ static GTY(()) bool sdbout_initialized; #include "rtl.h" #include "regs.h" +#include "function.h" +#include "emit-rtl.h" #include "flags.h" #include "insn-config.h" #include "reload.h" |