forked from OSchip/llvm-project
Remove dead variable to silence compiler warning [NFC]
This commit is contained in:
parent
3cfd9384bf
commit
e5e4653255
|
@ -7440,7 +7440,6 @@ public:
|
|||
bool HasQualifier = false;
|
||||
|
||||
CallRef Call;
|
||||
bool EvaluatedArgs = false;
|
||||
|
||||
// Extract function decl and 'this' pointer from the callee.
|
||||
if (CalleeType->isSpecificBuiltinType(BuiltinType::BoundMember)) {
|
||||
|
@ -7499,7 +7498,6 @@ public:
|
|||
if (!EvaluateArgs(isa<CXXMethodDecl>(FD) ? Args.slice(1) : Args, Call,
|
||||
Info, FD, /*RightToLeft=*/true))
|
||||
return false;
|
||||
EvaluatedArgs = true;
|
||||
}
|
||||
|
||||
// Overloaded operator calls to member functions are represented as normal
|
||||
|
|
Loading…
Reference in New Issue