diff options
author | Hans-Peter Nilsson <hp@bitrange.com> | 2000-01-03 01:07:21 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@gcc.gnu.org> | 2000-01-03 01:07:21 +0000 |
commit | e4c0478d8506037fab912254e37f5b1852a256da (patch) | |
tree | 62276a934dde97f6879d484277d446088d34dadf | |
parent | 213800dd6f2fa1295964c6f7c1e33548218a1671 (diff) | |
download | gcc-e4c0478d8506037fab912254e37f5b1852a256da.zip gcc-e4c0478d8506037fab912254e37f5b1852a256da.tar.gz gcc-e4c0478d8506037fab912254e37f5b1852a256da.tar.bz2 |
* config/i386/i386.c (override_options): Fix option-name typo.
From-SVN: r31170
-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; } |