diff options
author | Dominique d'Humieres <dominiq@lps.ens.fr> | 2014-09-06 05:17:10 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 2014-09-06 05:17:10 +0000 |
commit | 4fe24839bee48ab1b1fb1e4da33045d238615b9a (patch) | |
tree | 9c03425d9cfdde973c685486193c48623ad334b0 | |
parent | a9034823464bf90c6a608f2c99b69428f770c66c (diff) | |
download | gcc-4fe24839bee48ab1b1fb1e4da33045d238615b9a.zip gcc-4fe24839bee48ab1b1fb1e4da33045d238615b9a.tar.gz gcc-4fe24839bee48ab1b1fb1e4da33045d238615b9a.tar.bz2 |
re PR bootstrap/63188 (r214954 breaks bootstrap on x86_64-apple-darwin13)
2014-09-05 Dominique Dhumieres <dominiq@lps.ens.fr>
PR target/63188
* config/darwin.h (INIT_SECTION_ASM_OP): Define to "".
* config/pa/pa64-hpux.h (INIT_SECTION_ASM_OP): Likewise.
From-SVN: r214983
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/darwin.h | 2 | ||||
-rw-r--r-- | gcc/config/pa/pa64-hpux.h | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 07988cd..a8ef78a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2014-09-05 Dominique Dhumieres <dominiq@lps.ens.fr> + + PR target/63188 + * config/darwin.h (INIT_SECTION_ASM_OP): Define to "". + * config/pa/pa64-hpux.h (INIT_SECTION_ASM_OP): Likewise. + 2014-09-05 Easwaran Raman <eraman@google.com> PR rtl-optimization/62146 diff --git a/gcc/config/darwin.h b/gcc/config/darwin.h index 10dfa4d..d973d1d 100644 --- a/gcc/config/darwin.h +++ b/gcc/config/darwin.h @@ -499,7 +499,7 @@ extern GTY(()) int darwin_ms_struct; #define NO_PROFILE_COUNTERS 1 #undef INIT_SECTION_ASM_OP -#define INIT_SECTION_ASM_OP +#define INIT_SECTION_ASM_OP "" #undef INVOKE__main diff --git a/gcc/config/pa/pa64-hpux.h b/gcc/config/pa/pa64-hpux.h index 04b8de9..fede450 100644 --- a/gcc/config/pa/pa64-hpux.h +++ b/gcc/config/pa/pa64-hpux.h @@ -336,7 +336,7 @@ do { \ the sections are not actually used. However, we still must provide defines to select the proper code path. */ #undef INIT_SECTION_ASM_OP -#define INIT_SECTION_ASM_OP +#define INIT_SECTION_ASM_OP "" #undef FINI_SECTION_ASM_OP #define FINI_SECTION_ASM_OP |