rt_gccstream/gcc/testsuite/gcc.target/mips/msub-1.c

20 lines
369 B
C

/* { dg-do compile } */
/* { dg-options "-O2 -march=vr5400 -mgp32" } */
/* { dg-final { scan-assembler-times "\tmsac\t\\\$0," 2 } } */
NOMIPS16 long long
f1 (int x, int y, long long z)
{
return z - (long long) y * x;
}
NOMIPS16 long long
f2 (int x, int y, long long z)
{
long long t = (long long) x * y;
int temp = 5;
if (temp == 5)
z -= t;
return z;
}