Remove trailing whitespace.
authorJim Grosbach <grosbach@apple.com>
Fri, 11 Feb 2011 18:45:44 +0000 (18:45 +0000)
committerJim Grosbach <grosbach@apple.com>
Fri, 11 Feb 2011 18:45:44 +0000 (18:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125385 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/MC/MCParser/AsmLexer.h

index 99caebfab7f5d58106dd3408b3862afcb401a837..252696bec317a25c576ac272788d7bf183572b47 100644 (file)
@@ -29,10 +29,10 @@ class MCAsmInfo;
 /// AsmLexer - Lexer class for assembly files.
 class AsmLexer : public MCAsmLexer {
   const MCAsmInfo &MAI;
-  
+
   const char *CurPtr;
   const MemoryBuffer *CurBuf;
-  
+
   void operator=(const AsmLexer&); // DO NOT IMPLEMENT
   AsmLexer(const AsmLexer&);       // DO NOT IMPLEMENT
 
@@ -43,13 +43,13 @@ protected:
 public:
   AsmLexer(const MCAsmInfo &MAI);
   ~AsmLexer();
-  
+
   void setBuffer(const MemoryBuffer *buf, const char *ptr = NULL);
-  
+
   virtual StringRef LexUntilEndOfStatement();
 
   bool isAtStartOfComment(char Char);
-  
+
   const MCAsmInfo &getMAI() const { return MAI; }
 
 private:
@@ -64,7 +64,7 @@ private:
   AsmToken LexQuote();
   AsmToken LexFloatLiteral();
 };
-  
+
 } // end namespace llvm
 
 #endif