summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/pr32219-1.c
blob: 5bd80a0cd47aa6edb77c86ff61afae9f23a0e21e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { dg-do compile { target *-*-linux* } } */
/* { dg-options "-O2 -fpie" } */

/* Common symbol with -fpie.  */
int xxx;

int
foo ()
{
  return xxx;
}

/* { dg-final { scan-assembler "movl\[ \t\]xxx\\(%rip\\), %eax" { target { ! ia32 } } } } */
/* { dg-final { scan-assembler-not "xxx@GOTPCREL" { target { ! ia32 } } } } */
/* { dg-final { scan-assembler "movl\[ \t\]xxx@GOTOFF\\(%\[^,\]*\\), %eax" { target ia32 } } } */
/* { dg-final { scan-assembler-not "movl\[ \t\]xxx@GOT\\(%\[^,\]*\\), %eax" { target ia32 } } } */