X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gas%2Fas.c;h=091fe902da18ede2698b80859ade64c80ffba7d4;hb=f69656d00fe3154519ea21668d964bf8cc50c01b;hp=cc84725a421fcdc60b7a6eac157d42feceb3da60;hpb=66f8b2cbbb675ccbcae56e2bdb6dae485878ec00;p=deliverable%2Fbinutils-gdb.git diff --git a/gas/as.c b/gas/as.c index cc84725a42..091fe902da 100644 --- a/gas/as.c +++ b/gas/as.c @@ -95,10 +95,12 @@ int debug_memory = 0; /* Enable verbose mode. */ int verbose = 0; -/* Which version of DWARF CIE to produce. The default could be overridden - by a target during its initialisation, or by the --gdwarf-cie-version - command line flag. */ -int flag_dwarf_cie_version = 1; +/* Which version of DWARF CIE to produce. This default value of -1 + indicates that this value has not been set yet, a default value is + provided in dwarf2_init. A different value can also be supplied by the + command line flag --gdwarf-cie-version, or by a target in + MD_AFTER_PARSE_ARGS. */ +int flag_dwarf_cie_version = -1; #if defined OBJ_ELF || defined OBJ_MAYBE_ELF int flag_use_elf_stt_common = DEFAULT_GENERATE_ELF_STT_COMMON;