diff options
author | Fangrui Song <maskray@google.com> | 2018-07-12 02:03:53 +0000 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2018-07-12 02:03:53 +0000 |
commit | 28f69c72bbb42ebc45a475a4be5d1c398dbd1b89 (patch) | |
tree | 86bbe2fdb108b2fb9f55f6feb6a737e8cf6ef7bb /llvm/lib/AsmParser/LLLexer.h | |
parent | 4366b0122a173a1e3c7f8d95a5a5131a79acc9b6 (diff) | |
download | bcm5719-llvm-28f69c72bbb42ebc45a475a4be5d1c398dbd1b89.tar.gz bcm5719-llvm-28f69c72bbb42ebc45a475a4be5d1c398dbd1b89.zip |
[AsmParser] Fix inconsistent declaration parameter name
llvm-svn: 336879
Diffstat (limited to 'llvm/lib/AsmParser/LLLexer.h')
-rw-r--r-- | llvm/lib/AsmParser/LLLexer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/AsmParser/LLLexer.h b/llvm/lib/AsmParser/LLLexer.h index b4b121ad0d2..21deb6e0891 100644 --- a/llvm/lib/AsmParser/LLLexer.h +++ b/llvm/lib/AsmParser/LLLexer.h @@ -67,7 +67,7 @@ namespace llvm { IgnoreColonInIdentifiers = val; } - bool Error(LocTy L, const Twine &Msg) const; + bool Error(LocTy ErrorLoc, const Twine &Msg) const; bool Error(const Twine &Msg) const { return Error(getLoc(), Msg); } void Warning(LocTy WarningLoc, const Twine &Msg) const; @@ -98,7 +98,7 @@ namespace llvm { uint64_t atoull(const char *Buffer, const char *End); uint64_t HexIntToVal(const char *Buffer, const char *End); void HexToIntPair(const char *Buffer, const char *End, uint64_t Pair[2]); - void FP80HexToIntPair(const char *Buff, const char *End, uint64_t Pair[2]); + void FP80HexToIntPair(const char *Buffer, const char *End, uint64_t Pair[2]); }; } // end namespace llvm |