From 1c224d8d880680eddfd959d3dcfa0d5d8d62fbc5 Mon Sep 17 00:00:00 2001 From: "Duncan P. N. Exon Smith" Date: Fri, 11 Jul 2014 23:56:50 +0000 Subject: [PATCH] BFI: Mark the end of namespaces git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212861 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/BlockFrequencyInfoImpl.h | 6 ++++-- lib/Analysis/BlockFrequencyInfoImpl.cpp | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/include/llvm/Analysis/BlockFrequencyInfoImpl.h b/include/llvm/Analysis/BlockFrequencyInfoImpl.h index 73408016e09..c434b539561 100644 --- a/include/llvm/Analysis/BlockFrequencyInfoImpl.h +++ b/include/llvm/Analysis/BlockFrequencyInfoImpl.h @@ -131,7 +131,8 @@ inline raw_ostream &operator<<(raw_ostream &OS, const BlockMass &X) { template <> struct isPodLike { static const bool value = true; }; -} + +} // end namespace llvm //===----------------------------------------------------------------------===// // @@ -1183,7 +1184,8 @@ raw_ostream &BlockFrequencyInfoImpl::print(raw_ostream &OS) const { OS << "\n"; return OS; } -} + +} // end namespace llvm #undef DEBUG_TYPE diff --git a/lib/Analysis/BlockFrequencyInfoImpl.cpp b/lib/Analysis/BlockFrequencyInfoImpl.cpp index 4fd2c111317..39d7f520b4e 100644 --- a/lib/Analysis/BlockFrequencyInfoImpl.cpp +++ b/lib/Analysis/BlockFrequencyInfoImpl.cpp @@ -87,7 +87,8 @@ struct DitheringDistributer { BlockMass takeMass(uint32_t Weight); }; -} + +} // end namespace DitheringDistributer::DitheringDistributer(Distribution &Dist, const BlockMass &Mass) { -- 2.34.1