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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [builtins/] [lib/] [strchr.c] - Blame information for rev 297

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 297 jeremybenn
extern void abort (void);
2
extern int inside_main;
3
 
4
__attribute__ ((__noinline__))
5
char *
6
strchr (const char *s, int c)
7
{
8
#ifdef __OPTIMIZE__
9
  if (inside_main)
10
    abort ();
11
#endif
12
 
13
  for (;;)
14
    {
15
      if (*s == c)
16
        return (char *) s;
17
      if (*s == 0)
18
        return 0;
19
      s++;
20
    }
21
}
22
 
23
__attribute__ ((__noinline__))
24
char *
25
index (const char *s, int c)
26
{
27
  return strchr (s, c);
28
}

powered by: WebSVN 2.1.0

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