re PR tree-optimization/80275 (Poor (but valid) code generated by optimizer passing optimizer list to function)

2017-04-04  Richard Biener  <rguenther@suse.de>

	PR tree-optimization/80275
	* g++.dg/opt/pr80275.C: Make g static.

From-SVN: r246671
This commit is contained in:
Richard Biener 2017-04-04 06:58:45 +00:00 committed by Richard Biener
parent 4c43930609
commit a577fcf2d5
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2017-04-04 Richard Biener <rguenther@suse.de>
PR tree-optimization/80275
* g++.dg/opt/pr80275.C: Make g static.
2017-04-04 Segher Boessenkool <segher@kernel.crashing.org>
PR rtl-optimization/60818

View File

@ -3,7 +3,7 @@
#include <algorithm>
int g()
static int g()
{
return 1234;
}