Comment out some dead assignments per suggestion from static analysis tools.

Code is left in as comments for clarity to humans.
This commit is contained in:
Steve 2015-07-15 14:34:35 -06:00
parent a417f01041
commit 465a14666a

View File

@ -450,11 +450,12 @@ namespace spv {
return nextInst;
case spv::OperandVariableLiterals:
if (opCode == spv::OpDecorate && asDecoration(word - 1) == spv::DecorationBuiltIn) {
++word;
--numOperands;
}
word += numOperands;
// for clarity
// if (opCode == spv::OpDecorate && asDecoration(word - 1) == spv::DecorationBuiltIn) {
// ++word;
// --numOperands;
// }
// word += numOperands;
return nextInst;
case spv::OperandVariableLiteralId:
@ -466,7 +467,7 @@ namespace spv {
return nextInst;
case spv::OperandLiteralString:
word += literalStringWords(literalString(word));
// word += literalStringWords(literalString(word)); // for clarity
return nextInst;
// Single word operands we simply ignore, as they hold no IDs