mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-27 14:24:40 +00:00
fix warnings when compiling with -Wshadow
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157061 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -217,9 +217,9 @@ public:
|
|||||||
void setMiscFlag(enum MiscFlags M) { Misc |= M; }
|
void setMiscFlag(enum MiscFlags M) { Misc |= M; }
|
||||||
void setPosition(unsigned pos) { Position = pos; }
|
void setPosition(unsigned pos) { Position = pos; }
|
||||||
protected:
|
protected:
|
||||||
explicit Option(enum NumOccurrencesFlag Occurrences,
|
explicit Option(enum NumOccurrencesFlag OccurrencesFlag,
|
||||||
enum OptionHidden Hidden)
|
enum OptionHidden Hidden)
|
||||||
: NumOccurrences(0), Occurrences(Occurrences), HiddenFlag(Hidden),
|
: NumOccurrences(0), Occurrences(OccurrencesFlag), HiddenFlag(Hidden),
|
||||||
Formatting(NormalFormatting), Position(0),
|
Formatting(NormalFormatting), Position(0),
|
||||||
AdditionalVals(0), NextRegistered(0),
|
AdditionalVals(0), NextRegistered(0),
|
||||||
ArgStr(""), HelpStr(""), ValueStr("") {
|
ArgStr(""), HelpStr(""), ValueStr("") {
|
||||||
|
@ -48,7 +48,7 @@ public:
|
|||||||
SMLoc Start, End;
|
SMLoc Start, End;
|
||||||
|
|
||||||
SMRange() {}
|
SMRange() {}
|
||||||
SMRange(SMLoc Start, SMLoc End) : Start(Start), End(End) {
|
SMRange(SMLoc St, SMLoc En) : Start(St), End(En) {
|
||||||
assert(Start.isValid() == End.isValid() &&
|
assert(Start.isValid() == End.isValid() &&
|
||||||
"Start and end should either both be valid or both be invalid!");
|
"Start and end should either both be valid or both be invalid!");
|
||||||
}
|
}
|
||||||
|
@ -176,9 +176,9 @@ public:
|
|||||||
SMDiagnostic()
|
SMDiagnostic()
|
||||||
: SM(0), LineNo(0), ColumnNo(0), Kind(SourceMgr::DK_Error) {}
|
: SM(0), LineNo(0), ColumnNo(0), Kind(SourceMgr::DK_Error) {}
|
||||||
// Diagnostic with no location (e.g. file not found, command line arg error).
|
// Diagnostic with no location (e.g. file not found, command line arg error).
|
||||||
SMDiagnostic(const std::string &filename, SourceMgr::DiagKind Kind,
|
SMDiagnostic(const std::string &filename, SourceMgr::DiagKind Knd,
|
||||||
const std::string &Msg)
|
const std::string &Msg)
|
||||||
: SM(0), Filename(filename), LineNo(-1), ColumnNo(-1), Kind(Kind),
|
: SM(0), Filename(filename), LineNo(-1), ColumnNo(-1), Kind(Knd),
|
||||||
Message(Msg) {}
|
Message(Msg) {}
|
||||||
|
|
||||||
// Diagnostic with a location.
|
// Diagnostic with a location.
|
||||||
|
Reference in New Issue
Block a user