diff contrib/reghunt/examples/30643.c @ 0:a06113de4d67

first commit
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Fri, 17 Jul 2009 14:47:48 +0900
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/contrib/reghunt/examples/30643.c	Fri Jul 17 14:47:48 2009 +0900
@@ -0,0 +1,14 @@
+extern void abort (void);
+struct s {  int a;  int b;};
+void bar (struct s *ps,  int *p, int *__restrict__ rp, int *__restrict__ rq)
+{
+  ps->a = 0;
+  ps->b = 1;
+  if (ps->a != 0)    abort ();
+  p[0] = 0;
+  p[1] = 1;
+  if (p[0] != 0)     abort ();
+  rp[0] = 0;
+  rq[0] = 1;
+  if (rp[0] != 0)     abort();
+}