aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr57518.c
blob: 4c84f30baef30432450d01159eb4b9c919ac9ab1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* 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" } } */