forked from OSchip/llvm-project
TableGen: Add initializer.
Keep GCC's warnings happy. It can't reason out that the state machine won't ever hit the potentially uninitialized use in OPC_FilterValue. llvm-svn: 164041
This commit is contained in:
parent
636f1a1d99
commit
4c36349de9
|
@ -1882,7 +1882,7 @@ static void emitDecodeInstruction(formatted_raw_ostream &OS) {
|
|||
<< " uint64_t Bits = STI.getFeatureBits();\n"
|
||||
<< "\n"
|
||||
<< " const uint8_t *Ptr = DecodeTable;\n"
|
||||
<< " uint32_t CurFieldValue;\n"
|
||||
<< " uint32_t CurFieldValue = 0;\n"
|
||||
<< " DecodeStatus S = MCDisassembler::Success;\n"
|
||||
<< " for (;;) {\n"
|
||||
<< " ptrdiff_t Loc = Ptr - DecodeTable;\n"
|
||||
|
|
Loading…
Reference in New Issue