Commit ace4c45a by John Kessenich

Merge pull request #18 from srk-lunarg/v30_static_analysis_fixes

Comment out some dead assignments per suggestion from static analysis…
parents a417f010 465a1466
...@@ -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