blob: 416673b46d7922df9b9b349920e33047c103cd42 [file] [log] [blame]
/* { dg-do compile } */
/* This test requires widening_mul */
/* { dg-options "-march=vr4130 -mgp32 -fexpensive-optimizations" } */
/* { dg-skip-if "code quality test" { *-*-* } { "-O0" } { "" } } */
/* { dg-final { scan-assembler-times "\tmacc\t\\\$1," 3 } } */
NOMIPS16 long long
f1 (int x, int y, long long z)
{
return (long long) x * y + z;
}
NOMIPS16 long long
f2 (int x, int y, long long z)
{
return z + (long long) y * x;
}
NOMIPS16 long long
f3 (int x, int y, long long z)
{
long long t = (long long) x * y;
int temp = 5;
if (temp == 5)
z += t;
return z;
}