summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/2009-06-01-addrofknr.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/2009-06-01-addrofknr.c')
-rw-r--r--test/CodeGen/2009-06-01-addrofknr.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/CodeGen/2009-06-01-addrofknr.c b/test/CodeGen/2009-06-01-addrofknr.c
new file mode 100644
index 0000000..16a5bbf
--- /dev/null
+++ b/test/CodeGen/2009-06-01-addrofknr.c
@@ -0,0 +1,21 @@
+// RUN: clang-cc %s -o %t -emit-llvm -verify
+// PR4289
+
+struct funcptr {
+ int (*func)();
+};
+
+static int func(f)
+ void *f;
+{
+}
+
+int
+main(int argc, char *argv[])
+{
+ struct funcptr fp;
+
+ fp.func = &func;
+ fp.func = func;
+}
+
OpenPOWER on IntegriCloud