diff options
author | Jeff Law <law@redhat.com> | 2018-08-26 20:54:32 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2018-08-26 20:54:32 -0600 |
commit | 507c82f6da1ac9243f8d14a049dba8abb3ea26bf (patch) | |
tree | b3964e8cc1f3e05c06df4136b1d0eff7e327066c /gcc | |
parent | 291872b404f353d7e9c01141543932586e12b170 (diff) | |
download | gcc-507c82f6da1ac9243f8d14a049dba8abb3ea26bf.zip gcc-507c82f6da1ac9243f8d14a049dba8abb3ea26bf.tar.gz gcc-507c82f6da1ac9243f8d14a049dba8abb3ea26bf.tar.bz2 |
frame-header-opt.c: Include "backend.h" rather than "cfg.h"
* config/mips/frame-header-opt.c: Include "backend.h" rather than
"cfg.h"
From-SVN: r263869
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/mips/frame-header-opt.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 386dc8e..3bd14d7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2018-08-26 Jeff Law <law@redhat.com> + + * config/mips/frame-header-opt.c: Include "backend.h" rather than + "cfg.h" + 2018-08-26 Marek Polacek <polacek@redhat.com> PR c++/87029, Implement -Wredundant-move. diff --git a/gcc/config/mips/frame-header-opt.c b/gcc/config/mips/frame-header-opt.c index 77298dc..ed51947 100644 --- a/gcc/config/mips/frame-header-opt.c +++ b/gcc/config/mips/frame-header-opt.c @@ -29,13 +29,13 @@ along with GCC; see the file COPYING3. If not see #include "system.h" #include "context.h" #include "coretypes.h" +#include "backend.h" #include "tree.h" #include "tree-core.h" #include "tree-pass.h" #include "target.h" #include "target-globals.h" #include "profile-count.h" -#include "cfg.h" #include "cgraph.h" #include "function.h" #include "basic-block.h" |