diff options
author | Martin Liska <mliska@suse.cz> | 2017-08-07 19:12:52 +0200 |
---|---|---|
committer | Martin Liska <marxin@gcc.gnu.org> | 2017-08-07 17:12:52 +0000 |
commit | 2643d17f5a0c6b2c760e9dc9bc23399dbc6aae37 (patch) | |
tree | 244cdf89224210fba86d2aaac34d4de3f1ce2b19 /gcc/config | |
parent | f4c222c0358dc0f9f6390e1eee1c6a9214f7f829 (diff) | |
download | gcc-2643d17f5a0c6b2c760e9dc9bc23399dbc6aae37.zip gcc-2643d17f5a0c6b2c760e9dc9bc23399dbc6aae37.tar.gz gcc-2643d17f5a0c6b2c760e9dc9bc23399dbc6aae37.tar.bz2 |
Add missing header file attribs.h to couple of targets.
2017-08-07 Martin Liska <mliska@suse.cz>
* config/m32c/m32c.c: Add include of stringpool.h and attribs.h.
* config/rl78/rl78.c: Add include of attribs.h.
* config/sh/sh.c: Likewise.
* config/v850/v850.c: Likewise.
From-SVN: r250926
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/m32c/m32c.c | 2 | ||||
-rw-r--r-- | gcc/config/rl78/rl78.c | 1 | ||||
-rw-r--r-- | gcc/config/sh/sh.c | 1 | ||||
-rw-r--r-- | gcc/config/v850/v850.c | 1 |
4 files changed, 5 insertions, 0 deletions
diff --git a/gcc/config/m32c/m32c.c b/gcc/config/m32c/m32c.c index b23f5aa..95e97ab 100644 --- a/gcc/config/m32c/m32c.c +++ b/gcc/config/m32c/m32c.c @@ -25,6 +25,8 @@ #include "target.h" #include "rtl.h" #include "tree.h" +#include "stringpool.h" +#include "attribs.h" #include "df.h" #include "memmodel.h" #include "tm_p.h" diff --git a/gcc/config/rl78/rl78.c b/gcc/config/rl78/rl78.c index 460775c..f931162 100644 --- a/gcc/config/rl78/rl78.c +++ b/gcc/config/rl78/rl78.c @@ -29,6 +29,7 @@ #include "memmodel.h" #include "tm_p.h" #include "stringpool.h" +#include "attribs.h" #include "optabs.h" #include "emit-rtl.h" #include "recog.h" diff --git a/gcc/config/sh/sh.c b/gcc/config/sh/sh.c index 6f01dcb..c31776f 100644 --- a/gcc/config/sh/sh.c +++ b/gcc/config/sh/sh.c @@ -35,6 +35,7 @@ along with GCC; see the file COPYING3. If not see #include "memmodel.h" #include "tm_p.h" #include "stringpool.h" +#include "attribs.h" #include "optabs.h" #include "emit-rtl.h" #include "recog.h" diff --git a/gcc/config/v850/v850.c b/gcc/config/v850/v850.c index eeb24aa..dd73c96 100644 --- a/gcc/config/v850/v850.c +++ b/gcc/config/v850/v850.c @@ -29,6 +29,7 @@ #include "memmodel.h" #include "tm_p.h" #include "stringpool.h" +#include "attribs.h" #include "insn-config.h" #include "regs.h" #include "emit-rtl.h" |