diff options
author | David Blaikie <dblaikie@gmail.com> | 2015-03-16 18:06:57 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2015-03-16 18:06:57 +0000 |
commit | 9f380a3ca0eb7fe88e315fc9af684db81456fd86 (patch) | |
tree | 8feda05ab02a4baf7a4fb54e3dd717e00693d955 /llvm/lib/MC/MCParser/AsmLexer.cpp | |
parent | 322ffceaf5b413b61145c26fb524a1eeb5646239 (diff) | |
download | llvm-9f380a3ca0eb7fe88e315fc9af684db81456fd86.zip llvm-9f380a3ca0eb7fe88e315fc9af684db81456fd86.tar.gz llvm-9f380a3ca0eb7fe88e315fc9af684db81456fd86.tar.bz2 |
Fix uses of reserved identifiers starting with an underscore followed by an uppercase letter
This covers essentially all of llvm's headers and libs. One or two weird
cases I wasn't sure were worth/appropriate to fix.
llvm-svn: 232394
Diffstat (limited to 'llvm/lib/MC/MCParser/AsmLexer.cpp')
-rw-r--r-- | llvm/lib/MC/MCParser/AsmLexer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCParser/AsmLexer.cpp b/llvm/lib/MC/MCParser/AsmLexer.cpp index 5c8ec66..b983d99 100644 --- a/llvm/lib/MC/MCParser/AsmLexer.cpp +++ b/llvm/lib/MC/MCParser/AsmLexer.cpp @@ -21,7 +21,7 @@ #include <cstdlib> using namespace llvm; -AsmLexer::AsmLexer(const MCAsmInfo &_MAI) : MAI(_MAI) { +AsmLexer::AsmLexer(const MCAsmInfo &MAI) : MAI(MAI) { CurPtr = nullptr; isAtStartOfLine = true; AllowAtInIdentifier = !StringRef(MAI.getCommentString()).startswith("@"); |