aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/decl.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/CodeGen/decl.c b/test/CodeGen/decl.c
index dcf120fd88..7ffb7006b0 100644
--- a/test/CodeGen/decl.c
+++ b/test/CodeGen/decl.c
@@ -89,16 +89,3 @@ struct test7s { int a; int b; } test7[] = {
struct test8s { int f0; char f1; } test8g = {};
-// PR7519
-
-struct S {
- void (*x) (struct S *);
-};
-
-extern struct S *global_dc;
-void cp_diagnostic_starter(struct S *);
-
-void init_error(void) {
- global_dc->x = cp_diagnostic_starter;
-}
-