mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-21 19:19:55 +08:00
c-pragma.c (maybe_apply_renaming_pragma): Fix typo.
* c-pragma.c (maybe_apply_renaming_pragma): Fix typo. * gcc.c (display_help): Likewise. * toplev.c (f_options): Likewise. * params.def (PARAM_MAX_INLINE_SCOPE): Likewise. * config/c4x/c4x.h (TARGET_SWITCHES): Likewise. * config/mcore/mcore.h (TARGET_SWITCHES): Likewise. * config/s390/s390.h (TARGET_SWITCHES): Likewise. * config/v850/v850.h (TARGET_SWITCHES): Likewise. * call.c (build_operator_new_call): Fix typo. * lang-options.h: Likewise. From-SVN: r66228
This commit is contained in:
parent
fbf17dab00
commit
8e854b762f
@ -1,3 +1,14 @@
|
||||
2003-04-29 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
|
||||
|
||||
* c-pragma.c (maybe_apply_renaming_pragma): Fix typo.
|
||||
* gcc.c (display_help): Likewise.
|
||||
* toplev.c (f_options): Likewise.
|
||||
* params.def (PARAM_MAX_INLINE_SCOPE): Likewise.
|
||||
* config/c4x/c4x.h (TARGET_SWITCHES): Likewise.
|
||||
* config/mcore/mcore.h (TARGET_SWITCHES): Likewise.
|
||||
* config/s390/s390.h (TARGET_SWITCHES): Likewise.
|
||||
* config/v850/v850.h (TARGET_SWITCHES): Likewise.
|
||||
|
||||
2003-04-29 J"orn Rennecke <joern.rennecke@superh.com>
|
||||
|
||||
* varasm.c (default_assemble_visibility): Use assemble_name.
|
||||
|
@ -449,7 +449,7 @@ maybe_apply_renaming_pragma (decl, asmname)
|
||||
{
|
||||
const char *oldasmname = IDENTIFIER_POINTER (oldname) + 1;
|
||||
if (asmname && strcmp (TREE_STRING_POINTER (asmname), oldasmname) != 0)
|
||||
warning ("asm declaration conficts with previous rename");
|
||||
warning ("asm declaration conflicts with previous rename");
|
||||
asmname = build_string (strlen (oldasmname), oldasmname);
|
||||
}
|
||||
|
||||
|
@ -237,7 +237,7 @@
|
||||
{ "no-force", -FORCE_FLAG, \
|
||||
N_("Allow RTL generation to emit invalid 3 operand insns") }, \
|
||||
{ "loop-unsigned", LOOP_UNSIGNED_FLAG, \
|
||||
N_("Allow unsigned interation counts for RPTB/DB") }, \
|
||||
N_("Allow unsigned iteration counts for RPTB/DB") }, \
|
||||
{ "no-loop-unsigned", -LOOP_UNSIGNED_FLAG, \
|
||||
N_("Disallow unsigned iteration counts for RPTB/DB") }, \
|
||||
{ "preserve-float", PRESERVE_FLOAT_FLAG, \
|
||||
|
@ -138,7 +138,7 @@ extern int target_flags;
|
||||
{"relax-immediates", RELAX_IMM_BIT, \
|
||||
"" }, \
|
||||
{"no-relax-immediates", - RELAX_IMM_BIT, \
|
||||
N_("Do not arbitary sized immediates in bit operations") }, \
|
||||
N_("Do not arbitrary sized immediates in bit operations") }, \
|
||||
{"wide-bitfields", W_FIELD_BIT, \
|
||||
N_("Always treat bit-field as int-sized") }, \
|
||||
{"no-wide-bitfields", - W_FIELD_BIT, \
|
||||
|
@ -100,7 +100,7 @@ extern int target_flags;
|
||||
{ "soft-float", -1, N_("Don't use hardware fp")}, \
|
||||
{ "backchain", 2, N_("Set backchain")}, \
|
||||
{ "no-backchain", -2, N_("Don't set backchain (faster, but debug harder")}, \
|
||||
{ "small-exec", 4, N_("Use bras for execucable < 64k")}, \
|
||||
{ "small-exec", 4, N_("Use bras for executable < 64k")}, \
|
||||
{ "no-small-exec",-4, N_("Don't use bras")}, \
|
||||
{ "debug", 8, N_("Additional debug prints")}, \
|
||||
{ "no-debug", -8, N_("Don't print additional debug prints")}, \
|
||||
|
@ -191,7 +191,7 @@ extern int target_flags;
|
||||
{ "no-app-regs", MASK_NO_APP_REGS, \
|
||||
N_("Do not use registers r2 and r5") }, \
|
||||
{ "strict-align", MASK_STRICT_ALIGN, \
|
||||
N_("Enfore strict alignment") }, \
|
||||
N_("Enforce strict alignment") }, \
|
||||
{ "no-strict-align", -MASK_STRICT_ALIGN, "" }, \
|
||||
{ "big-switch", MASK_BIG_SWITCH, \
|
||||
N_("Use 4 byte entries in switch tables") },\
|
||||
|
@ -1,3 +1,8 @@
|
||||
2003-04-29 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
|
||||
|
||||
* call.c (build_operator_new_call): Fix typo.
|
||||
* lang-options.h: Likewise.
|
||||
|
||||
2003-04-29 Mark Mitchell <mark@codesourcery.com>
|
||||
|
||||
* decl.c (maybe_commonize_var): Further tweak support for systems
|
||||
|
@ -2959,7 +2959,7 @@ build_operator_new_call (tree fnname, tree args, tree *size, tree *cookie_size)
|
||||
error ("no matching function for call to `%D(%A)'",
|
||||
DECL_NAME (OVL_CURRENT (fns)), args);
|
||||
else
|
||||
error ("call of overlopaded `%D(%A)' is ambiguous",
|
||||
error ("call of overloaded `%D(%A)' is ambiguous",
|
||||
DECL_NAME (OVL_CURRENT (fns)), args);
|
||||
if (candidates)
|
||||
print_z_candidates (candidates);
|
||||
|
@ -72,10 +72,10 @@ DEFINE_LANG_NAME ("C++")
|
||||
N_("Export functions even if they can be inlined") },
|
||||
{ "-fimplicit-templates", "" },
|
||||
{ "-fno-implicit-templates",
|
||||
N_("Only emit explicit template instatiations") },
|
||||
N_("Only emit explicit template instantiations") },
|
||||
{ "-fimplicit-inline-templates", "" },
|
||||
{ "-fno-implicit-inline-templates",
|
||||
N_("Only emit explicit instatiations of inline templates") },
|
||||
N_("Only emit explicit instantiations of inline templates") },
|
||||
{ "-finit-priority", "" },
|
||||
{ "-fno-init-priority", "" },
|
||||
{ "-fmemoize-lookups", "" },
|
||||
|
@ -3022,7 +3022,7 @@ display_help ()
|
||||
fputs (_(" -o <file> Place the output into <file>\n"), stdout);
|
||||
fputs (_("\
|
||||
-x <language> Specify the language of the following input files\n\
|
||||
Permissable languages include: c c++ assembler none\n\
|
||||
Permissible languages include: c c++ assembler none\n\
|
||||
'none' means revert to the default behavior of\n\
|
||||
guessing the language based on the file's extension\n\
|
||||
"), stdout);
|
||||
|
@ -94,7 +94,7 @@ DEFPARAM (PARAM_MAX_INLINE_INSNS,
|
||||
value specified by the "min-inline-insns" parameter. */
|
||||
DEFPARAM (PARAM_MAX_INLINE_SLOPE,
|
||||
"max-inline-slope",
|
||||
"The slope of the linear funtion throttling inlining after the recursive inlining limit has been reached is given by the negative reciprocal value of this parameter",
|
||||
"The slope of the linear function throttling inlining after the recursive inlining limit has been reached is given by the negative reciprocal value of this parameter",
|
||||
32)
|
||||
|
||||
/* When gcc has inlined so many instructions (by repeated
|
||||
|
@ -1116,9 +1116,9 @@ static const lang_independent_options f_options[] =
|
||||
{"sched-spec-load-dangerous",&flag_schedule_speculative_load_dangerous, 1,
|
||||
N_("Allow speculative motion of more loads") },
|
||||
{"sched2-use-superblocks", &flag_sched2_use_superblocks, 1,
|
||||
N_("If scheduling post reload, do superblock sheduling") },
|
||||
N_("If scheduling post reload, do superblock scheduling") },
|
||||
{"sched2-use-traces", &flag_sched2_use_traces, 1,
|
||||
N_("If scheduling post reload, do trace sheduling") },
|
||||
N_("If scheduling post reload, do trace scheduling") },
|
||||
{"branch-count-reg",&flag_branch_on_count_reg, 1,
|
||||
N_("Replace add,compare,branch with branch on count reg") },
|
||||
{"pic", &flag_pic, 1,
|
||||
@ -1159,7 +1159,7 @@ static const lang_independent_options f_options[] =
|
||||
{"data-sections", &flag_data_sections, 1,
|
||||
N_("place data items into their own section") },
|
||||
{"verbose-asm", &flag_verbose_asm, 1,
|
||||
N_("Add extra commentry to assembler output") },
|
||||
N_("Add extra commentary to assembler output") },
|
||||
{"gnu-linker", &flag_gnu_linker, 1,
|
||||
N_("Output GNU ld formatted global initializers") },
|
||||
{"regmove", &flag_regmove, 1,
|
||||
@ -1187,7 +1187,7 @@ static const lang_independent_options f_options[] =
|
||||
{"align-functions", &align_functions, 0,
|
||||
N_("Align the start of functions") },
|
||||
{"merge-constants", &flag_merge_constants, 1,
|
||||
N_("Attempt to merge identical constants accross compilation units") },
|
||||
N_("Attempt to merge identical constants across compilation units") },
|
||||
{"merge-all-constants", &flag_merge_constants, 2,
|
||||
N_("Attempt to merge identical constants and constant variables") },
|
||||
{"dump-unnumbered", &flag_dump_unnumbered, 1,
|
||||
|
Loading…
Reference in New Issue
Block a user