aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/movdi-rex64.c
blob: f8b8388106db2211c197b766a88c749d6c92d945 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do compile } */
/* { dg-options "-fPIE" } */
/* { dg-require-effective-target pie } */

char *strcpy (char *dest, const char *src);

static __thread char buffer[25];
const char * error_message (void)
{
    strcpy (buffer, "Unknown code ");
    return 0;
}