Reformat some stuff I missed in recent previous commits
authorDavid Blaikie <dblaikie@gmail.com>
Wed, 8 Oct 2014 23:09:42 +0000 (23:09 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Wed, 8 Oct 2014 23:09:42 +0000 (23:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219356 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/iterator_range.h
lib/CodeGen/AsmPrinter/DwarfDebug.h

index d004ead71f9d8cfd9b99a1d982b8b4cc543c07b3..ecaf4a2f64d9a480ecd5cc0a7677f176d18b1624 100644 (file)
@@ -49,7 +49,7 @@ template <class T> iterator_range<T> make_range(T x, T y) {
   return iterator_range<T>(std::move(x), std::move(y));
 }
 
-template<typename T> iterator_range<T> make_range(std::pair<T, T> p) {
+template <typename T> iterator_range<T> make_range(std::pair<T, T> p) {
   return iterator_range<T>(std::move(p.first), std::move(p.second));
 }
 }
index b918a04563558698d5a5700676b6aa0e744af0f7..0b2a2ff82634d7f0f9b18ea767b17de5af88c28f 100644 (file)
@@ -660,10 +660,12 @@ public:
   const MCSymbol *getFunctionBeginSym() const { return FunctionBeginSym; }
   const MCSymbol *getFunctionEndSym() const { return FunctionEndSym; }
 
-  iterator_range<ImportedEntityMap::const_iterator> findImportedEntitiesForScope(const MDNode *Scope) const {
+  iterator_range<ImportedEntityMap::const_iterator>
+  findImportedEntitiesForScope(const MDNode *Scope) const {
     return make_range(std::equal_range(
         ScopesWithImportedEntities.begin(), ScopesWithImportedEntities.end(),
-        std::pair<const MDNode *, const MDNode *>(Scope, nullptr), less_first()));
+        std::pair<const MDNode *, const MDNode *>(Scope, nullptr),
+        less_first()));
   }
 
   /// \brief A helper function to check whether the DIE for a given Scope is