Commit 465a1466 by Steve

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

Code is left in as comments for clarity to humans.
parent a417f010
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment