aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr109187.c
blob: 1ef14a73d2baa4732e52b111c934526cd9a8f993 (plain)
1
2
3
4
5
6
7
8
/* { dg-do compile } */
/* { dg-options "-O2 --param sched-autopref-queue-depth=1" } */

void f(int *a)
{
  for (;;)
    asm("" :: "r"(a[-0x10000000]), "r"(a[0x10000000]), "r"(a[0]) : "memory");
}