android_mt6572_jiabo/ndk/tests/build/mips-fp4/jni/mips-fp4-test1-2.c
2025-09-05 16:56:03 +08:00

15 lines
210 B
C

double test1 (double a, double b, double c)
{
return a + b * c;
}
double test2 (double a, double b, double c)
{
return - a + b * c;
}
double a, b, c;
int main()
{
test1(a, b, c);
test2(a, b, c);
}