1 /* PR target/63538 */
2 /* { dg-do compile } */
3 /* { dg-require-effective-target lp64 } */
4 /* { dg-options "-O2 -mcmodel=medium -mlarge-data-threshold=0" } */
5 
6 static char *str = "Hello World";
7 
foo()8 char *foo ()
9 {
10   return str;
11 }
12 /* See PR90698 re. Darwin xfail.  */
13 /* { dg-final { scan-assembler "movabs" { xfail { *-*-darwin* } } } } */
14