SimplifyCFG: Range'ify some for-loops. No functional change.
[oota-llvm.git] / lib / Support / Allocator.cpp
index ae861c8c4b60a67ef0305e61955249e79c30aa48..7c306b2370e6c30fc3e03ee6dd2ac697c228a42e 100644 (file)
@@ -21,6 +21,8 @@
 
 namespace llvm {
 
+namespace detail {
+
 void printBumpPtrAllocatorStats(unsigned NumSlabs, size_t BytesAllocated,
                                 size_t TotalMemory) {
   errs() << "\nNumber of memory regions: " << NumSlabs << '\n'
@@ -30,6 +32,8 @@ void printBumpPtrAllocatorStats(unsigned NumSlabs, size_t BytesAllocated,
          << " (includes alignment, etc)\n";
 }
 
+} // End namespace detail.
+
 void PrintRecyclerStats(size_t Size,
                         size_t Align,
                         size_t FreeListSize) {