Commit 6525fb87 by Jiri Engelthaler Committed by Jeff Law

[PATCH] Fix PR68029

	PR driver/68029
	* opts-common.c (prune_options): Don't ignore -fdiagnostics-color
	if it is the first parameter.

From-SVN: r231150
parent 16381201
2015-11-27 Jiri Engelthaler <engycz@gmail.com>
PR driver/68029
* opts-common.c (prune_options): Don't ignore -fdiagnostics-color
if it is the first parameter.
2015-12-01 Richard Sandiford <richard.sandiford@arm.com> 2015-12-01 Richard Sandiford <richard.sandiford@arm.com>
PR tree-optimization/68577 PR tree-optimization/68577
...@@ -885,7 +885,7 @@ keep: ...@@ -885,7 +885,7 @@ keep:
} }
} }
if (fdiagnostics_color_idx > 1) if (fdiagnostics_color_idx >= 1)
{ {
/* We put the last -fdiagnostics-color= at the first position /* We put the last -fdiagnostics-color= at the first position
after argv[0] so it can take effect immediately. */ after argv[0] so it can take effect immediately. */
......
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