Imported Upstream version 4.8.1
[platform/upstream/gcc48.git] / gcc / testsuite / gcc.target / i386 / pr55116-1.c
1 /* { dg-do compile { target { ! { ia32 } } } } */
2 /* { dg-options "-O2 -mx32 -maddress-mode=long" } */
3
4 int glob_int_arr[100];
5 int glob_int = 4;
6
7 void
8 expr_global (void)
9 {
10   __builtin_prefetch (glob_int_arr + glob_int, 0, 0);
11 }