Fix many.c testcase for Aarch64
authorMarcus Shawcroft <marcus.shawcroft@arm.com>
Tue, 15 Oct 2013 19:20:14 +0000 (15:20 -0400)
committerAnthony Green <green@moxielogic.com>
Tue, 15 Oct 2013 19:20:14 +0000 (15:20 -0400)
ChangeLog
testsuite/libffi.call/many.c

index 4daacff..45c87ac 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-10-11  Marcus Shawcroft  <marcus.shawcroft@arm.com>
+
+       * testsuite/libffi.call/many.c (many): Replace * with +.
+
 2013-10-08  Ondřej Bílka  <neleai@seznam.cz>
 
        * src/aarch64/ffi.c, src/aarch64/sysv.S, src/arm/ffi.c,
index 67a367f..11818e6 100644 (file)
@@ -32,7 +32,7 @@ static float many(float f1,
         (double) f11, (double) f12, (double) f13);
 #endif
 
-  return ((f1/f2+f3/f4+f5/f6+f7/f8+f9/f10+f11/f12) * f13);
+  return f1/f2+f3/f4+f5/f6+f7/f8+f9/f10+f11/f12+f13;
 }
 
 int main (void)