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:
Chris Lattner 2007-09-16 19:23:04 +00:00
parent 327e1a386c
commit 81b7624c6f
1 changed files with 7 additions and 0 deletions

View File

@ -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;
}
}