blob: 709432af64445e384cc2748be230068972dc9541 [file] [log] [blame]
/* APPLE LOCAL file Radar 4010664 */
/* { dg-do compile { target i?86*-*-darwin* } } */
/* { dg-skip-if "" { i?86*-*-darwin* } { "-m64" } { "" } } */
/* { dg-options "-mdynamic-no-pic -march=pentium4" } */
/* { dg-final { scan-assembler-not "86.get_pc_thunk" } } */
#define TEST_STRING "test string %d"
#define TEST_STRING0 "test string 0"
#include <stdlib.h>
#include <stdio.h>
int globalvar_i;
main (int argc, char *argv[])
{
char buf[90];
sprintf (buf, TEST_STRING, globalvar_i);
if (strcmp (buf, TEST_STRING0))
abort ();
exit (0);
}