diff options
author | carlos <carlos@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-07 18:33:16 +0000 |
---|---|---|
committer | carlos <carlos@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-07 18:33:16 +0000 |
commit | c6429fa92ef5fe730ff70f91604e256f13407aa8 (patch) | |
tree | 8f287ee437c41a3903ba4afe49b27a7b7cc676d4 /gcc/config.in | |
parent | 58e13bdf758b37b53ccb81d8f8b058eb5b5d37f9 (diff) | |
download | gcc-c6429fa92ef5fe730ff70f91604e256f13407aa8.tar.gz |
2007-08-07 Carlos O'Donell <carlos@codesourcery.com>
* configure.ac: Define HAVE_GNU_AS if $gas_flag is yes.
* configure: Regenerate.
* config.in: Regenerate.
* gcc.c [HAVE_GNU_AS]: Add "%{v} %{w:-W} %{I*} " to asm_options
spec string.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@127275 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gcc/config.in b/gcc/config.in index aba1bb54c5b..80f0dac7b23 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -121,7 +121,8 @@ #endif -/* Define if you want all gimple types to be verified after gimplifiation. */ +/* Define if you want all gimple types to be verified after gimplifiation. + This is cheap. */ #ifndef USED_FOR_TARGET #undef ENABLE_TYPES_CHECKING #endif @@ -894,6 +895,12 @@ #endif +/* Define if using GNU as. */ +#ifndef USED_FOR_TARGET +#undef HAVE_GNU_AS +#endif + + /* Define if using GNU ld. */ #ifndef USED_FOR_TARGET #undef HAVE_GNU_LD |