remove unused files
[platform/upstream/gcc48.git] / gcc / testsuite / gcc.dg / pr57518.c
1 /* PR rtl-optimization/57130 */
2
3 /* { dg-do compile } */
4 /* { dg-options "-O2 -fdump-rtl-ira" } */
5 /* { dg-final { scan-rtl-dump-not "REG_EQUIV.*mem.*\"ip\"" "ira" } } */
6
7 char ip[10];
8 int total;
9
10 void foo() {
11   int t;
12
13   t = ip[2];
14   total = t & 0x3;
15 }