aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/20020122-4.c
blob: 50aef195098bdbe07dd50a3e8169c11043d56a5e (plain)
1
2
3
4
5
6
7
8
9
10
11
/* Alpha -msmall-data didn't transform (mem (symbol_ref)) to
   (mem (lo_sum pic (symbol_ref))) within an asm at the right time.  */
/* { dg-do compile { target fpic } } */
/* { dg-options "-O2 -fpic" } */

void foo()
{
  static int test;
  int dummy;
  asm volatile ("" : "=m"(test), "=r"(dummy) : "m"(test));
}