mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-09 11:07:26 +08:00
gcc.c (asm_debug): Move initialization ...
* gcc/gcc.c (asm_debug): Move initialization ... (init_spec): ... here. From-SVN: r55259
This commit is contained in:
parent
17f44f02e7
commit
81bca2f51e
@ -1,3 +1,8 @@
|
||||
2002-07-05 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||
|
||||
* gcc/gcc.c (asm_debug): Move initialization ...
|
||||
(init_spec): ... here.
|
||||
|
||||
2002-07-05 Nathan Sidwell <nathan@codesourcery.com>
|
||||
|
||||
* c-parse.in (extdef): Append ';'.
|
||||
|
@ -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];
|
||||
|
Loading…
Reference in New Issue
Block a user