]> granicus.if.org Git - clang/commitdiff
Move private classes into anonymous namespaces.
authorBenjamin Kramer <benny.kra@googlemail.com>
Sat, 20 Oct 2012 13:02:06 +0000 (13:02 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Sat, 20 Oct 2012 13:02:06 +0000 (13:02 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166377 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/TargetInfo.cpp
lib/Sema/SemaStmtAsm.cpp

index ca9cfbbfef23e5eb5d8de2911f16a58859ead679..a9e11cb9542146b14898809fe1e2be486cf5e115 100644 (file)
@@ -2539,6 +2539,8 @@ llvm::Value *WinX86_64ABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
   return AddrTyped;
 }
 
+namespace {
+
 class NaClX86_64ABIInfo : public ABIInfo {
  public:
   NaClX86_64ABIInfo(CodeGen::CodeGenTypes &CGT, bool HasAVX)
@@ -2557,6 +2559,8 @@ class NaClX86_64TargetCodeGenInfo : public TargetCodeGenInfo  {
       : TargetCodeGenInfo(new NaClX86_64ABIInfo(CGT, HasAVX)) {}
 };
 
+}
+
 void NaClX86_64ABIInfo::computeInfo(CGFunctionInfo &FI) const {
   if (FI.getASTCallingConvention() == CC_PnaclCall)
     PInfo.computeInfo(FI);
@@ -3304,6 +3308,8 @@ llvm::Value *ARMABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
   return AddrTyped;
 }
 
+namespace {
+
 class NaClARMABIInfo : public ABIInfo {
  public:
   NaClARMABIInfo(CodeGen::CodeGenTypes &CGT, ARMABIInfo::ABIKind Kind)
@@ -3322,6 +3328,8 @@ class NaClARMTargetCodeGenInfo : public TargetCodeGenInfo  {
       : TargetCodeGenInfo(new NaClARMABIInfo(CGT, Kind)) {}
 };
 
+}
+
 void NaClARMABIInfo::computeInfo(CGFunctionInfo &FI) const {
   if (FI.getASTCallingConvention() == CC_PnaclCall)
     PInfo.computeInfo(FI);
index 8eae03c987c56627437878a94f3acc47d1cef6e3..616dcfcd83aa780f2846e207fda004fb2dcc3daf 100644 (file)
@@ -360,6 +360,8 @@ static bool buildMSAsmString(Sema &SemaRef,
   return false;
 }
 
+namespace {
+
 class MCAsmParserSemaCallbackImpl : public llvm::MCAsmParserSemaCallback {
   Sema *SemaRef;
 
@@ -374,6 +376,8 @@ public:
   }
 };
 
+}
+
 NamedDecl *Sema::LookupInlineAsmIdentifier(StringRef Name, SourceLocation Loc,
                                            unsigned &Size) {
   Size = 0;