summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhp <hp@138bc75d-0d04-0410-961f-82ee72b054a4>2000-01-03 01:07:21 +0000
committerhp <hp@138bc75d-0d04-0410-961f-82ee72b054a4>2000-01-03 01:07:21 +0000
commitbfd4539a9c86da979862c9b853275bd5de8d2f6b (patch)
tree62276a934dde97f6879d484277d446088d34dadf
parentca2159e921af8296270ef8ba0efed68eb7cd217a (diff)
downloadgcc-bfd4539a9c86da979862c9b853275bd5de8d2f6b.tar.gz
* config/i386/i386.c (override_options): Fix option-name typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31170 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/i386/i386.c4
2 files changed, 6 insertions, 2 deletions
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 <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 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;
}