aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr57518.c
blob: 94ef82db8e39dc9c5f451af5b777ada2fe03aaa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* PR rtl-optimization/57518 */

/* { dg-do compile } */
/* { dg-options "-O2 -fdump-rtl-ira" } */

char ip[10];
int total;

void foo() {
  int t;

  t = ip[2];
  total = t & 0x3;
}

/* { dg-final { scan-rtl-dump-not "REG_EQUIV\[^\n\]*mem\[^\n\]*\"ip\".*subreg" "ira" } } */
/* { dg-final { cleanup-rtl-dump "ira" } } */