diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-02-11 18:45:44 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-02-11 18:45:44 +0000 |
commit | e5ec5a41775c6ef1a69070c218fb4b6b4775ca41 (patch) | |
tree | 10b9950267fb2de34117c661f5282c6a9eb45e6b | |
parent | 78b9649d46c91f377cfc799aecb74cb017f72c36 (diff) |
Remove trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125385 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/MC/MCParser/AsmLexer.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/llvm/MC/MCParser/AsmLexer.h b/include/llvm/MC/MCParser/AsmLexer.h index 99caebfab7..252696bec3 100644 --- a/include/llvm/MC/MCParser/AsmLexer.h +++ b/include/llvm/MC/MCParser/AsmLexer.h @@ -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 |