forked from OSchip/llvm-project
[X86] X86CmovConverterPass::collectCmovCandidates - fix uninitialized variable warnings. NFCI.
llvm-svn: 361804
This commit is contained in:
parent
c6578eefdd
commit
4b48aa0e30
|
@ -280,7 +280,8 @@ bool X86CmovConverterPass::collectCmovCandidates(
|
|||
Group.clear();
|
||||
// Condition code of first CMOV instruction current processed range and its
|
||||
// opposite condition code.
|
||||
X86::CondCode FirstCC, FirstOppCC, MemOpCC;
|
||||
X86::CondCode FirstCC = X86::COND_INVALID, FirstOppCC = X86::COND_INVALID,
|
||||
MemOpCC = X86::COND_INVALID;
|
||||
// Indicator of a non CMOVrr instruction in the current processed range.
|
||||
bool FoundNonCMOVInst = false;
|
||||
// Indicator for current processed CMOV-group if it should be skipped.
|
||||
|
|
Loading…
Reference in New Issue