From: Rainer Orth Date: Fri, 5 Jul 2002 12:33:52 +0000 (+0000) Subject: gcc.c (asm_debug): Move initialization ... X-Git-Tag: releases/gcc-3.3.0~3945 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=81bca2f51e9b8346f6ff2a66b8b8743f2862b7af;p=thirdparty%2Fgcc.git gcc.c (asm_debug): Move initialization ... * gcc/gcc.c (asm_debug): Move initialization ... (init_spec): ... here. From-SVN: r55259 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2b412cda2367..6c2b06e5ea6c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-07-05 Rainer Orth + + * gcc/gcc.c (asm_debug): Move initialization ... + (init_spec): ... here. + 2002-07-05 Nathan Sidwell * c-parse.in (extdef): Append ';'. diff --git a/gcc/gcc.c b/gcc/gcc.c index c980fc0bb4e8..d0f0ea3e138f 100644 --- a/gcc/gcc.c +++ b/gcc/gcc.c @@ -646,7 +646,7 @@ proper position among the other output files. */ # define STARTFILE_PREFIX_SPEC "" #endif -static const char *asm_debug = ASM_DEBUG_SPEC; +static const char *asm_debug; static const char *cpp_spec = CPP_SPEC; static const char *cpp_predefines = CPP_PREDEFINES; static const char *cc1_spec = CC1_SPEC; @@ -1483,6 +1483,10 @@ init_spec () } #endif + /* Initialize here, not in definition. The IRIX 6 O32 cc sometimes chokes + on ?: in file-scope variable initializations. */ + asm_debug = ASM_DEBUG_SPEC; + for (i = ARRAY_SIZE (static_specs) - 1; i >= 0; i--) { sl = &static_specs[i];