aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/arm/epilog-1.c
blob: f97f1ebeaaf3e751d75baf9a6311621d8b78443d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Register liveness information from epilgoue enables peephole optimization. */
/* { dg-do compile } */
/* { dg-options "-mthumb -Os" } */
/* { dg-require-effective-target arm_thumb2_ok } */

volatile int g_k;
extern void bar(int, int, int, int);

int foo(int a, int b, int c, int d)
{
  if (g_k & 4) c++;
  bar (a, b, c, d);
  return 0;
}

/* { dg-final { scan-assembler-times "lsls.*#29" 1 } } */
/* { dg-final { scan-assembler-not "tst" } } */