aboutsummaryrefslogtreecommitdiff
path: root/SingleSource/Regression/C/gcc-c-torture/execute/20071018-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'SingleSource/Regression/C/gcc-c-torture/execute/20071018-1.c')
-rw-r--r--SingleSource/Regression/C/gcc-c-torture/execute/20071018-1.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/SingleSource/Regression/C/gcc-c-torture/execute/20071018-1.c b/SingleSource/Regression/C/gcc-c-torture/execute/20071018-1.c
new file mode 100644
index 00000000..625e9818
--- /dev/null
+++ b/SingleSource/Regression/C/gcc-c-torture/execute/20071018-1.c
@@ -0,0 +1,31 @@
+extern void abort(void);
+
+struct foo {
+ int rank;
+ char *name;
+};
+
+struct mem {
+ struct foo *x[4];
+};
+
+void __attribute__((noinline)) bar(struct foo **f)
+{
+ *f = __builtin_malloc(sizeof(struct foo));
+}
+struct foo * __attribute__((noinline, noclone)) foo(int rank)
+{
+ void *x = __builtin_malloc(sizeof(struct mem));
+ struct mem *as = x;
+ struct foo **upper = &as->x[rank * 8 - 5];
+ *upper = 0;
+ bar(upper);
+ return *upper;
+}
+
+int main()
+{
+ if (foo(1) == 0)
+ abort ();
+ return 0;
+}