Commit 6d3f1a13 by Andrew Stubbs Committed by Andrew Stubbs

driver-arm.c (host_detect_local_cpu): Close the file before exiting.

2011-10-18  Andrew Stubbs  <ams@codesourcery.com>

	gcc/
	* config/arm/driver-arm.c (host_detect_local_cpu): Close the file
	before exiting.

From-SVN: r180167
parent 3d71881d
2011-10-18 Andrew Stubbs <ams@codesourcery.com> 2011-10-18 Andrew Stubbs <ams@codesourcery.com>
* config/arm/driver-arm.c (host_detect_local_cpu): Close the file
before exiting.
2011-10-18 Andrew Stubbs <ams@codesourcery.com>
PR tree-optimization/50717 PR tree-optimization/50717
* tree-ssa-math-opts.c (is_widening_mult_p): Remove the 'type' * tree-ssa-math-opts.c (is_widening_mult_p): Remove the 'type'
...@@ -134,6 +134,9 @@ not_found: ...@@ -134,6 +134,9 @@ not_found:
unsigned int i; unsigned int i;
unsigned int opt; unsigned int opt;
const char *search[] = {NULL, "arch"}; const char *search[] = {NULL, "arch"};
fclose (f);
search[0] = argv[0]; search[0] = argv[0];
for (opt = 0; opt < ARRAY_SIZE (search); opt++) for (opt = 0; opt < ARRAY_SIZE (search); opt++)
for (i = 0; i < ARRAY_SIZE (configure_default_options); i++) for (i = 0; i < ARRAY_SIZE (configure_default_options); i++)
......
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