forked from OSchip/llvm-project
decl counting isn't implemented yet for objc. -stats probably crashes for it.
Patch by Justin Handville llvm-svn: 42009
This commit is contained in:
parent
327e1a386c
commit
81b7624c6f
|
@ -141,6 +141,13 @@ void Decl::addDeclKind(const Kind k) {
|
|||
case ObjcInterface:
|
||||
nInterfaceDecls++;
|
||||
break;
|
||||
case ObjcClass:
|
||||
case ObjcMethod:
|
||||
case ObjcProtoMethod:
|
||||
case ObjcProtocol:
|
||||
case ObjcIvar:
|
||||
assert(0 && "FIXME: Count these decls!");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue