[llvm] r212861 - BFI: Mark the end of namespaces
Duncan P. N. Exon Smith
dexonsmith at apple.com
Fri Jul 11 16:56:51 PDT 2014
Author: dexonsmith
Date: Fri Jul 11 18:56:50 2014
New Revision: 212861
URL: http://llvm.org/viewvc/llvm-project?rev=212861&view=rev
Log:
BFI: Mark the end of namespaces
Modified:
llvm/trunk/include/llvm/Analysis/BlockFrequencyInfoImpl.h
llvm/trunk/lib/Analysis/BlockFrequencyInfoImpl.cpp
Modified: llvm/trunk/include/llvm/Analysis/BlockFrequencyInfoImpl.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/BlockFrequencyInfoImpl.h?rev=212861&r1=212860&r2=212861&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/BlockFrequencyInfoImpl.h (original)
+++ llvm/trunk/include/llvm/Analysis/BlockFrequencyInfoImpl.h Fri Jul 11 18:56:50 2014
@@ -131,7 +131,8 @@ inline raw_ostream &operator<<(raw_ostre
template <> struct isPodLike<BlockMass> {
static const bool value = true;
};
-}
+
+} // end namespace llvm
//===----------------------------------------------------------------------===//
//
@@ -1183,7 +1184,8 @@ raw_ostream &BlockFrequencyInfoImpl<BT>:
OS << "\n";
return OS;
}
-}
+
+} // end namespace llvm
#undef DEBUG_TYPE
Modified: llvm/trunk/lib/Analysis/BlockFrequencyInfoImpl.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/BlockFrequencyInfoImpl.cpp?rev=212861&r1=212860&r2=212861&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/BlockFrequencyInfoImpl.cpp (original)
+++ llvm/trunk/lib/Analysis/BlockFrequencyInfoImpl.cpp Fri Jul 11 18:56:50 2014
@@ -87,7 +87,8 @@ struct DitheringDistributer {
BlockMass takeMass(uint32_t Weight);
};
-}
+
+} // end namespace
DitheringDistributer::DitheringDistributer(Distribution &Dist,
const BlockMass &Mass) {
More information about the llvm-commits
mailing list