diff options
author | Oleg Endo <olegendo@gcc.gnu.org> | 2013-11-19 18:34:44 +0000 |
---|---|---|
committer | Oleg Endo <olegendo@gcc.gnu.org> | 2013-11-19 18:34:44 +0000 |
commit | b327149a84145fa57338877610d9b427b8429334 (patch) | |
tree | 64ebd07c0c49070bdf64992eba860d15fa4ea7f1 | |
parent | 9e45112545521716df8d1569a00ff26ac320df56 (diff) | |
download | gcc-b327149a84145fa57338877610d9b427b8429334.zip gcc-b327149a84145fa57338877610d9b427b8429334.tar.gz gcc-b327149a84145fa57338877610d9b427b8429334.tar.bz2 |
sh-c.c: Fix typo in include of file attribs.h.
* config/sh/sh-c.c: Fix typo in include of file attribs.h.
From-SVN: r205052
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/sh/sh-c.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e128ec3..2addc2b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2013-11-19 Oleg Endo <olegendo@gcc.gnu.org> + + * config/sh/sh-c.c: Fix typo in include of file attribs.h. + 2013-11-19 Kyrylo Tkachov <kyrylo.tkachov@arm.com> * config/arm/arm.c (arm_new_rtx_costs): diff --git a/gcc/config/sh/sh-c.c b/gcc/config/sh/sh-c.c index 22e291d..0d7937f 100644 --- a/gcc/config/sh/sh-c.c +++ b/gcc/config/sh/sh-c.c @@ -24,7 +24,7 @@ along with GCC; see the file COPYING3. If not see #include "tm.h" #include "tree.h" #include "stringpool.h" -#include "attribs.h.h" +#include "attribs.h" #include "tm_p.h" #include "cpplib.h" #include "c-family/c-common.h" |