diff options
author | Kai Tietz <kai.tietz@onevision.com> | 2008-04-26 00:31:18 +0000 |
---|---|---|
committer | Kai Tietz <ktietz@gcc.gnu.org> | 2008-04-26 02:31:18 +0200 |
commit | c818d0196384dfd7af19533be9b4ca912db685a4 (patch) | |
tree | d06c9d190e0f2ac5e1378f80162c7bed507f2376 /gcc | |
parent | 8281124b3b3976292ba04e97c199021466b23e3c (diff) | |
download | gcc-c818d0196384dfd7af19533be9b4ca912db685a4.zip gcc-c818d0196384dfd7af19533be9b4ca912db685a4.tar.gz gcc-c818d0196384dfd7af19533be9b4ca912db685a4.tar.bz2 |
mingw32.h (SUBTARGET_INIT_BUILTINS): New.
2008-04-25 Kai Tietz <kai.tietz@onevision.com>
* config/i386/mingw32.h (SUBTARGET_INIT_BUILTINS): New.
* config/i386/i386.c (ix86_init_builtins): Use of
SUBTARGET_INIT_BUILTINS.
Add include of c-common.h for builtin.
From-SVN: r134691
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 1 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1e546d5..f448aac 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -3,6 +3,7 @@ * config/i386/mingw32.h (SUBTARGET_INIT_BUILTINS): New. * config/i386/i386.c (ix86_init_builtins): Use of SUBTARGET_INIT_BUILTINS. + Add include of c-common.h for builtin. 2008-04-25 Jan Hubicka <jh@suse.cz> diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 1e9776a..bb8983e 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -35,6 +35,7 @@ along with GCC; see the file COPYING3. If not see #include "insn-codes.h" #include "insn-attr.h" #include "flags.h" +#include "c-common.h" #include "except.h" #include "function.h" #include "recog.h" |