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/] [20011024-1.c] - Blame information for rev 154

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 149 jeremybenn
/* Test whether store motion recognizes pure functions as potentially reading
2
   any memory.  */
3
 
4
typedef __SIZE_TYPE__ size_t;
5
extern void *memcpy (void *dest, const void *src, size_t n);
6
extern size_t strlen (const char *s);
7
extern int strcmp (const char *s1, const char *s2) __attribute__((pure));
8
 
9
char buf[50];
10
 
11
static void foo (void)
12
{
13
  if (memcpy (buf, "abc", 4) != buf) abort ();
14
  if (strcmp (buf, "abc")) abort ();
15
  memcpy (buf, "abcdefgh", strlen ("abcdefgh") + 1);
16
}
17
 
18
int main (void)
19
{
20
  foo ();
21
  return 0;
22
}

powered by: WebSVN 2.1.0

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