diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-06-30 00:22:35 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-06-30 00:22:35 +0000 |
commit | e422266926f58f9fe7204ed68c7d060b0213c7d7 (patch) | |
tree | 9fe992ca7f86881e77e5c4eada2c78d98af5813b /clang/test/CodeGen/decl.c | |
parent | 8386469d7df3d23f7cf75f89d39581db8f8886bd (diff) | |
download | bcm5719-llvm-e422266926f58f9fe7204ed68c7d060b0213c7d7.tar.gz bcm5719-llvm-e422266926f58f9fe7204ed68c7d060b0213c7d7.zip |
Revert r107173, "fix PR7519: after thrashing around and remembering how all this stuff", it broke bootstrap.
llvm-svn: 107232
Diffstat (limited to 'clang/test/CodeGen/decl.c')
-rw-r--r-- | clang/test/CodeGen/decl.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/clang/test/CodeGen/decl.c b/clang/test/CodeGen/decl.c index dcf120fd88a..7ffb7006b05 100644 --- a/clang/test/CodeGen/decl.c +++ b/clang/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; -} - |