Fix many.c testcase for Aarch64

This commit is contained in:
Marcus Shawcroft
2013-10-15 15:20:14 -04:00
committed by Anthony Green
parent 128cd1d2f3
commit f64e4a8655
2 changed files with 5 additions and 1 deletions

View File

@@ -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,

View 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)