forked from OSchip/llvm-project
GCC thinks that this variable might be used uninitialized (it isn't).
llvm-svn: 176341
This commit is contained in:
parent
f5d8c90f57
commit
2cb41d372c
|
@ -2080,7 +2080,7 @@ MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
|
||||||
// Check for the various suffix matches.
|
// Check for the various suffix matches.
|
||||||
Tmp[Base.size()] = Suffixes[0];
|
Tmp[Base.size()] = Suffixes[0];
|
||||||
unsigned ErrorInfoIgnore;
|
unsigned ErrorInfoIgnore;
|
||||||
unsigned ErrorInfoMissingFeature;
|
unsigned ErrorInfoMissingFeature = 0; // Init suppresses compiler warnings.
|
||||||
unsigned Match1, Match2, Match3, Match4;
|
unsigned Match1, Match2, Match3, Match4;
|
||||||
|
|
||||||
Match1 = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore,
|
Match1 = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore,
|
||||||
|
|
Loading…
Reference in New Issue