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

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

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