]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix testsuite fallout from r252976.
authormsebor <msebor@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 22 Sep 2017 16:30:35 +0000 (16:30 +0000)
committermsebor <msebor@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 22 Sep 2017 16:30:35 +0000 (16:30 +0000)
gcc/testsuite/ChangeLog:

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

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@253100 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/pr80732.c

index baccb959a8830167293c194bc398d36650cd699f..eaae531a84e6cc7536eded4fa7ff4d9f9a092c7c 100644 (file)
@@ -1,3 +1,8 @@
+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
index e1207298239e7065033c74a64d5cd0368ade22ff..0a1f8270fd6b9f99dcd067bf358df796db52c121 100644 (file)
@@ -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"))