aboutsummaryrefslogtreecommitdiff
path: root/SingleSource/Regression/C/gcc-c-torture/execute/920810-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'SingleSource/Regression/C/gcc-c-torture/execute/920810-1.c')
-rw-r--r--SingleSource/Regression/C/gcc-c-torture/execute/920810-1.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/SingleSource/Regression/C/gcc-c-torture/execute/920810-1.c b/SingleSource/Regression/C/gcc-c-torture/execute/920810-1.c
new file mode 100644
index 00000000..9565bfc1
--- /dev/null
+++ b/SingleSource/Regression/C/gcc-c-torture/execute/920810-1.c
@@ -0,0 +1,23 @@
+#include <stdio.h>
+#include <string.h>
+#include <stdlib.h>
+
+typedef struct{void*super;int name;int size;}t;
+t*f(t*clas,int size)
+{
+ t*child=(t*)malloc(size);
+ memcpy(child,clas,clas->size);
+ child->super=clas;
+ child->name=0;
+ child->size=size;
+ return child;
+}
+main()
+{
+ t foo,*bar;
+ memset(&foo,37,sizeof(t));
+ foo.size=sizeof(t);
+ bar=f(&foo,sizeof(t));
+ if(bar->super!=&foo||bar->name!=0||bar->size!=sizeof(t))abort();
+ exit(0);
+}