Commit de26e239 by Joseph Myers Committed by Joseph Myers

Fix build for targets not defining EXTRA_SPECS.

	* gcc.c (driver::finalize): Only assign to extra_specs if
	[EXTRA_SPECS].

From-SVN: r227194
parent 387b37c1
2015-08-25 Joseph Myers <joseph@codesourcery.com>
* gcc.c (driver::finalize): Only assign to extra_specs if
[EXTRA_SPECS].
2015-08-25 Marek Polacek <polacek@redhat.com> 2015-08-25 Marek Polacek <polacek@redhat.com>
PR middle-end/67330 PR middle-end/67330
......
...@@ -9813,7 +9813,9 @@ driver::finalize () ...@@ -9813,7 +9813,9 @@ driver::finalize ()
} }
*(sl->ptr_spec) = sl->default_ptr; *(sl->ptr_spec) = sl->default_ptr;
} }
#ifdef EXTRA_SPECS
extra_specs = NULL; extra_specs = NULL;
#endif
processing_spec_function = 0; processing_spec_function = 0;
......
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