Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 361783 | Differences between
and this patch

Collapse All | Expand All

(-)a/gcc/gcc.c (+13 lines)
Lines 5470-5475 Link Here
5470
	&& check_live_switch (i, plen))
5470
	&& check_live_switch (i, plen))
5471
      return true;
5471
      return true;
5472
5472
5473
    else if (switches[i].args != 0)
5474
      {
5475
	if ((*switches[i].part1 == 'D' || *switches[i].part1 == 'U')
5476
	    && *switches[i].part1 == atom[0])
5477
	  {
5478
	    if (!strncmp (switches[i].args[0], &atom[1], len -1)
5479
		 && (starred || (switches[i].part1[1]== '\0'
5480
		 && switches[i].args[0][len -1] == '\0'))
5481
		 && check_live_switch (i, (starred ? 1 : -1)))
5482
	      return true;
5483
	  }
5484
      }
5485
5473
  return false;
5486
  return false;
5474
}
5487
}
5475
5488

Return to bug 361783