aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/gcc/testsuite/gcc.target/i386/pr23943.c
blob: 9e14036ec73874976654aaf0be05e50e11d42f5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* This used to ICE in side_effects_p, due to a problem in cse.c.
   Origin: marcus at jet dot franken dot de.  */
/* { dg-do compile } */
/* { dg-require-effective-target fpic } */
/* { dg-options "-O2 -fPIC" } */

typedef long unsigned int size_t;

extern size_t strlen (__const char *__s)
    __attribute__ ((__nothrow__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1)));

static char savecallsin[256] = "";

int read_agent_config(void)
{
  savecallsin[0] = '\0';

  if (savecallsin[strlen(savecallsin) - 1] != '/')
    __builtin___strncat_chk (savecallsin, "/", sizeof(savecallsin) - strlen(savecallsin) - 1, __builtin_object_size (savecallsin, 2 > 1)) ;
  return 0;
}