diff options
Diffstat (limited to 'gcc-4.6/gcc/gcc.c')
-rw-r--r-- | gcc-4.6/gcc/gcc.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/gcc-4.6/gcc/gcc.c b/gcc-4.6/gcc/gcc.c index afc9837..b954ecb 100644 --- a/gcc-4.6/gcc/gcc.c +++ b/gcc-4.6/gcc/gcc.c @@ -776,7 +776,7 @@ static const char *cc1_options = %{!fsyntax-only:%{S:%W{o*}%{!o*:-o %b.s}}}\ %{fsyntax-only:-o %j} %{-param*}\ %{fmudflap|fmudflapth:-fno-builtin -fno-merge-constants}\ - %{coverage:-fprofile-arcs -ftest-coverage}"; + %{coverage:-fprofile-arcs -ftest-coverage -fno-early-inlining}"; /* If an assembler wrapper is used to invoke post-assembly tools like MAO, --save-temps need to be passed to save the output of @@ -1431,8 +1431,7 @@ init_spec (void) } #endif -#if defined LINK_EH_SPEC || defined LINK_BUILDID_SPEC || \ - defined LINKER_HASH_STYLE +#if defined LINK_EH_SPEC || defined LINK_BUILDID_SPEC # ifdef LINK_BUILDID_SPEC /* Prepend LINK_BUILDID_SPEC to whatever link_spec we had before. */ obstack_grow (&obstack, LINK_BUILDID_SPEC, sizeof(LINK_BUILDID_SPEC) - 1); @@ -1441,16 +1440,6 @@ init_spec (void) /* Prepend LINK_EH_SPEC to whatever link_spec we had before. */ obstack_grow (&obstack, LINK_EH_SPEC, sizeof(LINK_EH_SPEC) - 1); # endif -# ifdef LINKER_HASH_STYLE - /* Prepend --hash-style=LINKER_HASH_STYLE to whatever link_spec we had - before. */ - { - static const char hash_style[] = "--hash-style="; - obstack_grow (&obstack, hash_style, sizeof(hash_style) - 1); - obstack_grow (&obstack, LINKER_HASH_STYLE, sizeof(LINKER_HASH_STYLE) - 1); - obstack_1grow (&obstack, ' '); - } -# endif obstack_grow0 (&obstack, link_spec, strlen (link_spec)); link_spec = XOBFINISH (&obstack, const char *); #endif |