diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-09-14 16:37:04 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-09-14 16:37:04 +0000 |
commit | 6148225b9590f18fcb6a1d3151d3158b316965e0 (patch) | |
tree | fb48e594250e6ecadba96e9cfe355883038ae729 /include | |
parent | dcd999624159842886d4be21efcc3ba0e61bab99 (diff) | |
download | external_llvm-6148225b9590f18fcb6a1d3151d3158b316965e0.zip external_llvm-6148225b9590f18fcb6a1d3151d3158b316965e0.tar.gz external_llvm-6148225b9590f18fcb6a1d3151d3158b316965e0.tar.bz2 |
Move state var to private class member.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139697 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/MC/MCParser/AsmLexer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/MC/MCParser/AsmLexer.h b/include/llvm/MC/MCParser/AsmLexer.h index b1277ec..dcecfb6 100644 --- a/include/llvm/MC/MCParser/AsmLexer.h +++ b/include/llvm/MC/MCParser/AsmLexer.h @@ -32,6 +32,7 @@ class AsmLexer : public MCAsmLexer { const char *CurPtr; const MemoryBuffer *CurBuf; + bool isAtStartOfLine; void operator=(const AsmLexer&); // DO NOT IMPLEMENT AsmLexer(const AsmLexer&); // DO NOT IMPLEMENT |