From: Hans-Peter Nilsson Date: Mon, 3 Jan 2000 01:07:21 +0000 (+0000) Subject: * config/i386/i386.c (override_options): Fix option-name typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e4c0478d8506037fab912254e37f5b1852a256da;p=gcc.git * config/i386/i386.c (override_options): Fix option-name typo. From-SVN: r31170 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d53da6a5847..f4274e39fbc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Mon Jan 3 02:54:40 2000 Hans-Peter Nilsson + + * config/i386/i386.c (override_options): Fix option-name typo. + 2000-01-02 Mark Mitchell * system.h (CEIL): Define. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 79521181750..47356aa3ff1 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; }