Handle "__private_extern__" storage class when printing FunctionDecls.

llvm-svn: 49706
This commit is contained in:
Ted Kremenek 2008-04-15 03:57:09 +00:00
parent f4212bdbc3
commit 044eb055af
1 changed files with 1 additions and 0 deletions

View File

@ -121,6 +121,7 @@ void DeclPrinter::PrintFunctionDeclStart(FunctionDecl *FD) {
case FunctionDecl::None: break;
case FunctionDecl::Extern: Out << "extern "; break;
case FunctionDecl::Static: Out << "static "; break;
case FunctionDecl::PrivateExtern: Out << "__private_extern__ "; break;
}
if (FD->isInline())