aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/mips/vr-mult-1.c
blob: 2ed4f2f9b064a7f6995aac13eb9947de7e9dbb8c (plain)
1
2
3
4
5
6
7
/* Make sure that mul/addu is preferred over mtlo/macc and that mul/subu
   is preferred over mtlo/msac.  */
/* { dg-do compile } */
/* { dg-options "-O2 -march=vr5400" } */
NOMIPS16 int f1 (int a, int b, int c) { return a + b * c; }
NOMIPS16 int f2 (int a, int b, int c) { return a - b * c; }
/* { dg-final { scan-assembler "\tmul\t.*\tmul\t" } } */