r199671 - Formatting cleanups; no functional changes.
Aaron Ballman
aaron at aaronballman.com
Mon Jan 20 08:15:55 PST 2014
Author: aaronballman
Date: Mon Jan 20 10:15:55 2014
New Revision: 199671
URL: http://llvm.org/viewvc/llvm-project?rev=199671&view=rev
Log:
Formatting cleanups; no functional changes.
Modified:
cfe/trunk/lib/Sema/SemaDeclAttr.cpp
Modified: cfe/trunk/lib/Sema/SemaDeclAttr.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaDeclAttr.cpp?rev=199671&r1=199670&r2=199671&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaDeclAttr.cpp (original)
+++ cfe/trunk/lib/Sema/SemaDeclAttr.cpp Mon Jan 20 10:15:55 2014
@@ -3786,8 +3786,7 @@ DLLImportAttr *Sema::mergeDLLImportAttr(
}
}
- return ::new (Context)DLLImportAttr(Range, Context,
- AttrSpellingListIndex);
+ return ::new (Context) DLLImportAttr(Range, Context, AttrSpellingListIndex);
}
static void handleDLLImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
@@ -3799,7 +3798,7 @@ static void handleDLLImportAttr(Sema &S,
// specified.
if (!S.getLangOpts().MicrosoftExt)
S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
- << Attr.getName() << 2 /*variable and function*/;
+ << Attr.getName() << ExpectedVariableOrFunction;
return;
}
@@ -3826,13 +3825,12 @@ DLLExportAttr *Sema::mergeDLLExportAttr(
if (D->hasAttr<DLLExportAttr>())
return NULL;
- return ::new (Context)DLLExportAttr(Range, Context,
- AttrSpellingListIndex);
+ return ::new (Context) DLLExportAttr(Range, Context, AttrSpellingListIndex);
}
static void handleDLLExportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
// Currently, the dllexport attribute is ignored for inlined functions, unless
- // the -fkeep-inline-functions flag has been used. Warning is emitted;
+ // the -fkeep-inline-functions flag has been used. Warning is emitted.
if (isa<FunctionDecl>(D) && cast<FunctionDecl>(D)->isInlineSpecified()) {
// FIXME: ... unless the -fkeep-inline-functions flag has been used.
S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
More information about the cfe-commits
mailing list