Commit c6257c5d by Alexandre Oliva Committed by Alexandre Oliva

i386.c (override_options): Set upper limit of -mpreferred-stack-boundary to 12.

* config/i386/i386.c (override_options): Set upper limit of
-mpreferred-stack-boundary to 12.

From-SVN: r46432
parent f1e09fa2
2001-10-23 Alexandre Oliva <aoliva@redhat.com>
* config/i386/i386.c (override_options): Set upper limit of
-mpreferred-stack-boundary to 12.
2001-10-22 Zack Weinberg <zack@codesourcery.com>
* recog.c (peephole2_optimize): Add default case to switch.
......
......@@ -978,8 +978,8 @@ override_options ()
if (ix86_preferred_stack_boundary_string)
{
i = atoi (ix86_preferred_stack_boundary_string);
if (i < (TARGET_64BIT ? 3 : 2) || i > 31)
error ("-mpreferred-stack-boundary=%d is not between %d and 31", i,
if (i < (TARGET_64BIT ? 3 : 2) || i > 12)
error ("-mpreferred-stack-boundary=%d is not between %d and 12", i,
TARGET_64BIT ? 3 : 2);
else
ix86_preferred_stack_boundary = (1 << i) * BITS_PER_UNIT;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment