Trailing whitespace.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Sun, 2 Apr 2017 23:57:17 +0000 (23:57 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Sun, 2 Apr 2017 23:57:17 +0000 (23:57 +0000)
llvm-svn: 299344

llvm/include/llvm/ADT/DepthFirstIterator.h
llvm/include/llvm/ADT/PointerUnion.h
llvm/include/llvm/ADT/SetVector.h
llvm/include/llvm/ADT/SmallPtrSet.h
llvm/include/llvm/Support/Compiler.h
llvm/include/llvm/Support/TargetParser.h
llvm/include/llvm/TableGen/StringMatcher.h

index c54573204588ea3ce99c9f5f1a846a37e783e7c9..b020d48cb3f082d4366da13498ea8a84fcb80baa 100644 (file)
@@ -135,7 +135,7 @@ private:
         }
       }
       this->Visited.completed(Node);
-      
+
       // Oops, ran out of successors... go up a level on the stack.
       VisitStack.pop_back();
     } while (!VisitStack.empty());
index a8ac18645f3ab75db17d6d219f829ca982597535..020c5ed44c42b809038f151aabdb5c512e0423a4 100644 (file)
@@ -31,7 +31,7 @@ template <typename T> struct PointerUnionTypeSelectorReturn {
 /// Get a type based on whether two types are the same or not.
 ///
 /// For:
-/// 
+///
 /// \code
 ///   typedef typename PointerUnionTypeSelector<T1, T2, EQ, NE>::Return Ret;
 /// \endcode
index 220b87983eeb05e98418cbd79373be91ee1be04c..13378aa3a04efc3b0ce8914ab5412bd2eb8e0b4b 100644 (file)
@@ -238,7 +238,7 @@ public:
   bool operator!=(const SetVector &that) const {
     return vector_ != that.vector_;
   }
-  
+
   /// \brief Compute This := This u S, return whether 'This' changed.
   /// TODO: We should be able to use set_union from SetOperations.h, but
   ///       SetVector interface is inconsistent with DenseSet.
index e9f822e36cebb62a54fb362436166d59a5c6e9ff..196ab6338047cce727796ae40b0fcf4fc9d96394 100644 (file)
@@ -194,7 +194,7 @@ protected:
       return Bucket;
     return EndPointer();
   }
-  
+
 private:
   bool isSmall() const { return CurArray == SmallArray; }
 
index 4b4a92451781515be810270e868eedf41f6e462c..a56bc93e111b6e24c801f35f67f1fd3b085aef7c 100644 (file)
 ///   int k;
 ///   long long l;
 /// };
-/// LLVM_PACKED_END 
+/// LLVM_PACKED_END
 #ifdef _MSC_VER
 # define LLVM_PACKED(d) __pragma(pack(push, 1)) d __pragma(pack(pop))
 # define LLVM_PACKED_START __pragma(pack(push, 1))
@@ -464,7 +464,7 @@ void AnnotateIgnoreWritesEnd(const char *file, int line);
 #define LLVM_PRETTY_FUNCTION __FUNCSIG__
 #elif defined(__GNUC__) || defined(__clang__)
 #define LLVM_PRETTY_FUNCTION __PRETTY_FUNCTION__
-#else 
+#else
 #define LLVM_PRETTY_FUNCTION __func__
 #endif
 
index 63aeca7f4e1eaa98589af5bf3f160408d45889d1..68e6b276581029fb18f6306cbb35342abd162faa 100644 (file)
@@ -142,7 +142,7 @@ unsigned parseArchVersion(StringRef Arch);
 
 } // namespace ARM
 
-// FIXME:This should be made into class design,to avoid dupplication. 
+// FIXME:This should be made into class design,to avoid dupplication.
 namespace AArch64 {
 
 // Arch names.
index b4387791083460e77cc9c6d6e6066717bac8096f..11a8ad8183aad823b0d1185fd8392b1a07ce2259 100644 (file)
@@ -38,7 +38,7 @@ private:
   raw_ostream &OS;
 
 public:
-  StringMatcher(StringRef strVariableName, 
+  StringMatcher(StringRef strVariableName,
                 const std::vector<StringPair> &matches, raw_ostream &os)
     : StrVariableName(strVariableName), Matches(matches), OS(os) {}