diff options
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/config/i386/i386.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d53da6a..f4274e3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Mon Jan 3 02:54:40 2000 Hans-Peter Nilsson <hp@bitrange.com> + + * config/i386/i386.c (override_options): Fix option-name typo. + 2000-01-02 Mark Mitchell <mark@codesourcery.com> * system.h (CEIL): Define. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 7952118..47356aa 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -491,14 +491,14 @@ override_options () ix86_align_funcs, MAX_CODE_ALIGN); } - /* Validate -mpreferred_stack_boundary= value, or provide default. + /* Validate -mpreferred-stack-boundary= value, or provide default. The default of 128 bits is for Pentium III's SSE __m128. */ ix86_preferred_stack_boundary = 128; if (ix86_preferred_stack_boundary_string) { int i = atoi (ix86_preferred_stack_boundary_string); if (i < 2 || i > 31) - fatal ("-mpreferred_stack_boundary=%d is not between 2 and 31", i); + fatal ("-mpreferred-stack-boundary=%d is not between 2 and 31", i); ix86_preferred_stack_boundary = (1 << i) * BITS_PER_UNIT; } |
