* config/i386/i386.c (override_options): Fix option-name typo.
authorHans-Peter Nilsson <hp@bitrange.com>
Mon, 3 Jan 2000 01:07:21 +0000 (01:07 +0000)
committerHans-Peter Nilsson <hp@gcc.gnu.org>
Mon, 3 Jan 2000 01:07:21 +0000 (01:07 +0000)
From-SVN: r31170

gcc/ChangeLog
gcc/config/i386/i386.c

index d53da6a5847f5ddee0c6f985c44f4703e408f05e..f4274e39fbc21d19206fb4d6bcaeaeda83224fd0 100644 (file)
@@ -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.
index 7952118175085d74119598d427c6161d31547901..47356aa3ff17a2e34f67f85976ec1ecdbac4c7e0 100644 (file)
@@ -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;
     }