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

From-SVN: r38238
This commit is contained in:
Tom Tromey 2000-12-13 23:09:33 +00:00 committed by Tom Tromey
parent 3f27e3f86a
commit 14dd240269
2 changed files with 13 additions and 1 deletions

View file

@ -1,3 +1,7 @@
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

View file

@ -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
{