OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [builtins/] [strpcpy.c] - Diff between revs 149 and 154

Only display areas with differences | Details | Blame | View Log

Rev 149 Rev 154
/* Copyright (C) 2003, 2004  Free Software Foundation.
/* Copyright (C) 2003, 2004  Free Software Foundation.
 
 
   Ensure builtin stpcpy performs correctly.
   Ensure builtin stpcpy performs correctly.
 
 
   Written by Kaveh Ghazi, 4/11/2003.  */
   Written by Kaveh Ghazi, 4/11/2003.  */
 
 
typedef __SIZE_TYPE__ size_t;
typedef __SIZE_TYPE__ size_t;
 
 
extern void abort (void);
extern void abort (void);
extern char *strcpy (char *, const char *);
extern char *strcpy (char *, const char *);
extern char *stpcpy (char *, const char *);
extern char *stpcpy (char *, const char *);
extern int memcmp (const void *, const void *, size_t);
extern int memcmp (const void *, const void *, size_t);
 
 
extern int inside_main;
extern int inside_main;
 
 
const char s1[] = "123";
const char s1[] = "123";
char p[32] = "";
char p[32] = "";
char *s2 = "defg";
char *s2 = "defg";
char *s3 = "FGH";
char *s3 = "FGH";
size_t l1 = 1;
size_t l1 = 1;
 
 
void
void
main_test (void)
main_test (void)
{
{
  int i = 8;
  int i = 8;
 
 
#if !defined __i386__ && !defined __x86_64__
#if !defined __i386__ && !defined __x86_64__
  /* The functions below might not be optimized into direct stores on all
  /* The functions below might not be optimized into direct stores on all
     arches.  It depends on how many instructions would be generated and
     arches.  It depends on how many instructions would be generated and
     what limits the architecture chooses in STORE_BY_PIECES_P.  */
     what limits the architecture chooses in STORE_BY_PIECES_P.  */
  inside_main = 0;
  inside_main = 0;
#endif
#endif
  if (stpcpy (p, "abcde") != p + 5 || memcmp (p, "abcde", 6))
  if (stpcpy (p, "abcde") != p + 5 || memcmp (p, "abcde", 6))
    abort ();
    abort ();
  if (stpcpy (p + 16, "vwxyz" + 1) != p + 16 + 4 || memcmp (p + 16, "wxyz", 5))
  if (stpcpy (p + 16, "vwxyz" + 1) != p + 16 + 4 || memcmp (p + 16, "wxyz", 5))
    abort ();
    abort ();
  if (stpcpy (p + 1, "") != p + 1 + 0 || memcmp (p, "a\0cde", 6))
  if (stpcpy (p + 1, "") != p + 1 + 0 || memcmp (p, "a\0cde", 6))
    abort ();
    abort ();
  if (stpcpy (p + 3, "fghij") != p + 3 + 5 || memcmp (p, "a\0cfghij", 9))
  if (stpcpy (p + 3, "fghij") != p + 3 + 5 || memcmp (p, "a\0cfghij", 9))
    abort ();
    abort ();
 
 
  if (stpcpy ((i++, p + 20 + 1), "23") != (p + 20 + 1 + 2)
  if (stpcpy ((i++, p + 20 + 1), "23") != (p + 20 + 1 + 2)
      || i != 9 || memcmp (p + 19, "z\0""23\0", 5))
      || i != 9 || memcmp (p + 19, "z\0""23\0", 5))
    abort ();
    abort ();
 
 
  if (stpcpy (stpcpy (p, "ABCD"), "EFG") != p + 7 || memcmp (p, "ABCDEFG", 8))
  if (stpcpy (stpcpy (p, "ABCD"), "EFG") != p + 7 || memcmp (p, "ABCDEFG", 8))
    abort();
    abort();
 
 
  /* Test at least one instance of the __builtin_ style.  We do this
  /* Test at least one instance of the __builtin_ style.  We do this
     to ensure that it works and that the prototype is correct.  */
     to ensure that it works and that the prototype is correct.  */
  if (__builtin_stpcpy (p, "abcde") != p + 5 || memcmp (p, "abcde", 6))
  if (__builtin_stpcpy (p, "abcde") != p + 5 || memcmp (p, "abcde", 6))
    abort ();
    abort ();
 
 
    /* If the result of stpcpy is ignored, gcc should use strcpy.
    /* If the result of stpcpy is ignored, gcc should use strcpy.
       This should be optimized always, so set inside_main again.  */
       This should be optimized always, so set inside_main again.  */
  inside_main = 1;
  inside_main = 1;
  stpcpy (p + 3, s3);
  stpcpy (p + 3, s3);
  if (memcmp (p, "abcFGH", 6))
  if (memcmp (p, "abcFGH", 6))
    abort ();
    abort ();
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.