git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@125806 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2011-02-18 00:52:55 +00:00
Родитель e476bdce8c
Коммит 21ac10d5e6
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -359,8 +359,13 @@ void DeclContextPrinter::PrintDeclContext(const DeclContext* DC,
Out << "<IndirectField> " << IFD << '\n';
break;
}
case Decl::Label: {
LabelDecl *LD = cast<LabelDecl>(*I);
Out << "<Label> " << LD << '\n';
break;
}
case Decl::Field: {
FieldDecl* FD = cast<FieldDecl>(*I);
FieldDecl *FD = cast<FieldDecl>(*I);
Out << "<field> " << FD << '\n';
break;
}