aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/arm/thumb2-mul-space-3.c
blob: 143a6deee795edda5da87edaeb99479a2abb2cec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* In Thumb-2 mode, when optimizing for size, generate a "muls"
   instruction and use the resulting condition flags rather than a
   separate compare instruction.  */
/* { dg-options "-mthumb -Os" }  */
/* { dg-require-effective-target arm_thumb2_ok } */
/* { dg-final { scan-assembler "muls" } } */
/* { dg-final { scan-assembler-not "cmp" } } */

int x;

int f(int i, int j)
{
  i = i * j;
  if (i < 0)
    x = 1;
  return i;
}