Commit 14dd2402 by Tom Tromey Committed by Tom Tromey

* gcc.c (handle_braces): Handle %{<S*} spec correctly.

From-SVN: r38238
parent 3f27e3f8
2000-12-13 Tom Tromey <tromey@redhat.com>
* gcc.c (handle_braces): Handle %{<S*} spec correctly.
2000-12-13 Alexandre Oliva <aoliva@redhat.com>
* function.c (assign_parms): Optimize incoming PARALLELs into
......
......@@ -4820,7 +4820,15 @@ next_member:
for (i = 0; i < n_switches; i++)
if (!strncmp (switches[i].part1, filter, p - filter)
&& check_live_switch (i, p - filter))
give_switch (i, 0, include_blanks);
{
if (elide_switch)
{
switches[i].live_cond = SWITCH_IGNORE;
switches[i].validated = 1;
}
else
give_switch (i, 0, include_blanks);
}
}
else
{
......
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