From: tbsaunde Date: Mon, 16 Nov 2015 02:28:15 +0000 (+0000) Subject: PR 68366 - include emit-rtl.h in sdbout.c X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=524745bf99a1bfc96564ac8b8f5a1caa67fa00df;p=thirdparty%2Fgcc.git 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 PR middle-end/68366 * sdbout.c: Include emit-rtl.h and function.h. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230402 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a034df877052..09a165d4c227 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2015-11-15 Trevor Saunders + + PR middle-end/68366 + * sdbout.c: Include emit-rtl.h and function.h. + 2015-11-15 Gerald Pfeifer * config/i386/freebsd.h (SUBTARGET32_DEFAULT_CPU): Change to i586. diff --git a/gcc/sdbout.c b/gcc/sdbout.c index f22bc7cd087b..09fa06eb3bd0 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"