re PR driver/28437 (multiple fno-builtin-* flags broken)
2006-07-27 H.J. Lu <hongjiu.lu@intel.com> PR driver/28437 * opts-common.c (prune_options): Skip joined switches. From-SVN: r115780
This commit is contained in:
parent
3050098b16
commit
faa8884386
@ -1,3 +1,8 @@
|
|||||||
|
2006-07-27 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
PR driver/28437
|
||||||
|
* opts-common.c (prune_options): Skip joined switches.
|
||||||
|
|
||||||
2006-07-27 Jan Hubicka <jh@suse.cz>
|
2006-07-27 Jan Hubicka <jh@suse.cz>
|
||||||
|
|
||||||
PR rtl-optimization/28071
|
PR rtl-optimization/28071
|
||||||
|
@ -175,6 +175,10 @@ cont:
|
|||||||
if (option->neg_index < 0)
|
if (option->neg_index < 0)
|
||||||
goto cont;
|
goto cont;
|
||||||
|
|
||||||
|
/* Skip joined switches. */
|
||||||
|
if ((option->flags & CL_JOINED))
|
||||||
|
goto cont;
|
||||||
|
|
||||||
/* Reject negative form of switches that don't take negatives as
|
/* Reject negative form of switches that don't take negatives as
|
||||||
unrecognized. */
|
unrecognized. */
|
||||||
if (!value && (option->flags & CL_REJECT_NEGATIVE))
|
if (!value && (option->flags & CL_REJECT_NEGATIVE))
|
||||||
|
Loading…
Reference in New Issue
Block a user