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