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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [builtins/] [strchr.c] - Diff between revs 297 and 338

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

Rev 297 Rev 338
/* Copyright (C) 2000, 2003  Free Software Foundation.
/* Copyright (C) 2000, 2003  Free Software Foundation.
 
 
   Ensure all expected transformations of builtin strchr and index
   Ensure all expected transformations of builtin strchr and index
   occur and perform correctly.
   occur and perform correctly.
 
 
   Written by Jakub Jelinek, 11/7/2000.  */
   Written by Jakub Jelinek, 11/7/2000.  */
 
 
extern void abort (void);
extern void abort (void);
extern char *strchr (const char *, int);
extern char *strchr (const char *, int);
extern char *index (const char *, int);
extern char *index (const char *, int);
 
 
void
void
main_test (void)
main_test (void)
{
{
  const char *const foo = "hello world";
  const char *const foo = "hello world";
 
 
  if (strchr (foo, 'x'))
  if (strchr (foo, 'x'))
    abort ();
    abort ();
  if (strchr (foo, 'o') != foo + 4)
  if (strchr (foo, 'o') != foo + 4)
    abort ();
    abort ();
  if (strchr (foo + 5, 'o') != foo + 7)
  if (strchr (foo + 5, 'o') != foo + 7)
    abort ();
    abort ();
  if (strchr (foo, '\0')  != foo + 11)
  if (strchr (foo, '\0')  != foo + 11)
    abort ();
    abort ();
  /* Test only one instance of index since the code path is the same
  /* Test only one instance of index since the code path is the same
     as that of strchr. */
     as that of strchr. */
  if (index ("hello", 'z')  != 0)
  if (index ("hello", 'z')  != 0)
    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_strchr (foo, 'o')  != foo + 4)
  if (__builtin_strchr (foo, 'o')  != foo + 4)
    abort ();
    abort ();
  if (__builtin_index (foo, 'o')  != foo + 4)
  if (__builtin_index (foo, 'o')  != foo + 4)
    abort ();
    abort ();
}
}
 
 

powered by: WebSVN 2.1.0

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