Commit 1aab6678 by James Greenhalgh Committed by James Greenhalgh

Fix PR58513 for -fPIC

gcc/testsuite/

	* g++.dg/vect/pr58513.cc (op): Make static.

From-SVN: r202947
parent 78bca40d
2013-09-26 James Greenhalgh <james.greenhalgh@arm.com>
* g++.dg/vect/pr58513.cc (op): Make static.
2013-09-26 Richard Biener <rguenther@suse.de>
* gcc.dg/tree-ssa/coalesce-2.c: New testcase.
......
// { dg-do compile }
// { dg-require-effective-target vect_int }
int op (const int& x, const int& y) { return x + y; }
static int op (const int& x, const int& y) { return x + y; }
void foo(int* a)
{
......
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