Commit b2b67217 by Martin Sebor Committed by Martin Sebor

Fix testsuite fallout from r252976.

gcc/testsuite/ChangeLog:

	PR c/81854
	* gcc.target/i386/pr80732.c: Correct a type error.

From-SVN: r253100
parent 20bdc473
2017-09-22 Martin Sebor <msebor@redhat.com>
PR c/81854
* gcc.target/i386/pr80732.c: Correct a type error.
2017-09-22 David Malcolm <dmalcolm@redhat.com>
* g++.dg/diagnostic/param-type-mismatch.C: Update expected results
......
......@@ -34,7 +34,7 @@ static double f2_default(double a, double b, double c)
return a * b + c;
}
static void *f2_resolve(void)
static __typeof__ (f2_fma)* f2_resolve(void)
{
__builtin_cpu_init ();
if (__builtin_cpu_supports("fma"))
......
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