aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-06-30 00:22:35 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-06-30 00:22:35 +0000
commit7bbe03d8ae0772d89f6539d073dd43e49268a42c (patch)
tree0ed96be92a9eb82609592aecb62ec5d46cd064ab /test
parenta9e05156438dc3f0ef1067ffce80037d9333e022 (diff)
Revert r107173, "fix PR7519: after thrashing around and remembering how all this stuff", it broke bootstrap.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107232 91177308-0d34-0410-b5e6-96231b3b80d8
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;
-}
-