Add dummy -ast-dump support for ObjC category implementations.

llvm-svn: 57087
This commit is contained in:
Daniel Dunbar 2008-10-05 00:31:15 +00:00
parent 8f9be42072
commit 6b57b45b4d
1 changed files with 2 additions and 0 deletions

View File

@ -489,6 +489,8 @@ namespace {
}
} else if (isa<ObjCImplementationDecl>(D)) {
Out << "Read objc implementation decl\n";
} else if (isa<ObjCCategoryImplDecl>(D)) {
Out << "Read objc category implementation decl\n";
}
else {
assert(0 && "Unknown decl type!");