summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2004-06-10 18:24:16 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2004-06-10 18:24:16 +0000
commit6dbc8ca7d2977c97d4b7b4153cc93c61ac1aa252 (patch)
treecd39c245e5d8f83f5989d8556edebc56181b0f72
parent042f1ac33fd7a67c54260fac4098aeeefa4b46f0 (diff)
Typos in option descriptions; fixed in gcc 3.
-rw-r--r--gnu/egcs/gcc/toplev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/egcs/gcc/toplev.c b/gnu/egcs/gcc/toplev.c
index bbe46849d94..3a4730f174d 100644
--- a/gnu/egcs/gcc/toplev.c
+++ b/gnu/egcs/gcc/toplev.c
@@ -954,7 +954,7 @@ lang_independent_options f_options[] =
{"fast-math", &flag_fast_math, 1,
"Improve FP speed by violating ANSI & IEEE rules" },
{"common", &flag_no_common, 0,
- "Do not put unitialised globals in the common section" },
+ "Do not put uninitialized globals in the common section" },
{"inhibit-size-directive", &flag_inhibit_size_directive, 1,
"Do not generate .size directives" },
{"function-sections", &flag_function_sections, 1,
@@ -1275,7 +1275,7 @@ lang_independent_options W_options[] =
{"cast-align", &warn_cast_align, 1,
"Warn about pointer casts which increase alignment" },
{"uninitialized", &warn_uninitialized, 1,
- "Warn about unitialized automatic variables"},
+ "Warn about uninitialized automatic variables"},
{"inline", &warn_inline, 1,
"Warn when an inlined function cannot be inlined"},
{"stack-protector", &warn_stack_protector, 1,