diff options
author | Steve Ellcey <sellcey@cavium.com> | 2018-08-27 16:39:44 +0000 |
---|---|---|
committer | Steve Ellcey <sje@gcc.gnu.org> | 2018-08-27 16:39:44 +0000 |
commit | a9cf35bf3e9b753710f3a443f6e4095a2840c7b6 (patch) | |
tree | 9bebb55286a92c8fe4ef715b8e3fb3be2346fadc /gcc | |
parent | efc3a1a101184a73718bcb034e530e57cd65a543 (diff) | |
download | gcc-a9cf35bf3e9b753710f3a443f6e4095a2840c7b6.zip gcc-a9cf35bf3e9b753710f3a443f6e4095a2840c7b6.tar.gz gcc-a9cf35bf3e9b753710f3a443f6e4095a2840c7b6.tar.bz2 |
aarch64-speculation.cc: Replace include of cfg.h with include of backend.h.
2018-08-27 Steve Ellcey <sellcey@cavium.com>
* config/aarch64/aarch64-speculation.cc: Replace include of cfg.h
with include of backend.h.
From-SVN: r263890
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/aarch64/aarch64-speculation.cc | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d27a7a8..1f9e77b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2018-08-27 Steve Ellcey <sellcey@cavium.com> + + * config/aarch64/aarch64-speculation.cc: Replace include of cfg.h + with include of backend.h. + 2018-08-27 Richard Biener <rguenther@suse.de> PR tree-optimization/86927 diff --git a/gcc/config/aarch64/aarch64-speculation.cc b/gcc/config/aarch64/aarch64-speculation.cc index 2dd06ae..3cd9ba0 100644 --- a/gcc/config/aarch64/aarch64-speculation.cc +++ b/gcc/config/aarch64/aarch64-speculation.cc @@ -25,7 +25,7 @@ #include "rtl.h" #include "tree-pass.h" #include "profile-count.h" -#include "cfg.h" +#include "backend.h" #include "cfgbuild.h" #include "print-rtl.h" #include "cfgrtl.h" |