forked from OSchip/llvm-project
parent
dbb92cad2e
commit
939d932fbe
|
@ -36,7 +36,7 @@ class PTHLexer : public PreprocessorLexer {
|
|||
const unsigned char* LastHashTokPtr;
|
||||
|
||||
/// PPCond - Pointer to a side table in the PTH file that provides a
|
||||
/// a consise summary of the preproccessor conditional block structure.
|
||||
/// a concise summary of the preprocessor conditional block structure.
|
||||
/// This is used to perform quick skipping of conditional blocks.
|
||||
const unsigned char* PPCond;
|
||||
|
||||
|
|
|
@ -3233,7 +3233,7 @@ public:
|
|||
void ProcessPragmaWeak(Scope *S, Decl *D);
|
||||
// Decl attributes - this routine is the top level dispatcher.
|
||||
void ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD);
|
||||
// Helper for delayed proccessing of attributes.
|
||||
// Helper for delayed processing of attributes.
|
||||
void ProcessDeclAttributeDelayed(Decl *D, const AttributeList *AttrList);
|
||||
void ProcessDeclAttributeList(Scope *S, Decl *D, const AttributeList *AL,
|
||||
bool IncludeCXX11Attributes = true);
|
||||
|
|
|
@ -1915,7 +1915,7 @@ void Parser::ParseClassSpecifier(tok::TokenKind TagTokKind,
|
|||
}
|
||||
|
||||
if (!TagOrTempResult.isInvalid())
|
||||
// Delayed proccessing of attributes.
|
||||
// Delayed processing of attributes.
|
||||
Actions.ProcessDeclAttributeDelayed(TagOrTempResult.get(), attrs.getList());
|
||||
|
||||
const char *PrevSpec = nullptr;
|
||||
|
|
|
@ -6571,7 +6571,7 @@ void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
|
|||
}
|
||||
}
|
||||
|
||||
// Helper for delayed proccessing TransparentUnion attribute.
|
||||
// Helper for delayed processing TransparentUnion attribute.
|
||||
void Sema::ProcessDeclAttributeDelayed(Decl *D, const AttributeList *AttrList) {
|
||||
for (const AttributeList *Attr = AttrList; Attr; Attr = Attr->getNext())
|
||||
if (Attr->getKind() == AttributeList::AT_TransparentUnion) {
|
||||
|
|
Loading…
Reference in New Issue