aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr63538.c
blob: 4fa199af713009f4c7d4fe8330a48a350f77e68f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* PR63538 is about not using 64-bit addresses for .lrodata accesses when it
   involves STRING_CSTs.  */
/* { dg-do compile { target x86_64-*-* } } */
/* { dg-options "-O2 -mcmodel=medium -mlarge-data-threshold=0" { target x86_64-*-* } } */

#include <stdio.h>

const char *str = "Hello World";

int main() {
 printf("str = %p %s\n",str, str);
 return 0;
}
/* { dg-final { scan-assembler-not "movl" } } */