Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.target / i386 / pr23943.c
blob5e4ad9b21128f6c27458b22703f07b28d451b1ec
1 /* This used to ICE in side_effects_p, due to a problem in cse.c.
2 Origin: marcus at jet dot franken dot de. */
3 /* { dg-do compile { target i?86-*-* x86_64-*-* } } */
4 /* { dg-options "-O2 -fPIC" } */
6 typedef long unsigned int size_t;
8 extern size_t strlen (__const char *__s)
9 __attribute__ ((__nothrow__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1)));
11 static char savecallsin[256] = "";
13 int read_agent_config(void)
15 savecallsin[0] = '\0';
17 if (savecallsin[strlen(savecallsin) - 1] != '/')
18 __builtin___strncat_chk (savecallsin, "/", sizeof(savecallsin) - strlen(savecallsin) - 1, __builtin_object_size (savecallsin, 2 > 1)) ;
19 return 0;