Merge pull request #2375 from FernandoS27/fix-ldc

Remove unnecessary bounding in LD_C
pull/8/head
bunnei 6 years ago committed by GitHub
commit ed9dba89d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -552,8 +552,7 @@ private:
} else if (std::holds_alternative<OperationNode>(*offset)) {
// Indirect access
const std::string final_offset = code.GenerateTemporary();
code.AddLine("uint " + final_offset + " = (ftou(" + Visit(offset) + ") / 4) & " +
std::to_string(MAX_CONSTBUFFER_ELEMENTS - 1) + ';');
code.AddLine("uint " + final_offset + " = (ftou(" + Visit(offset) + ") / 4);");
return fmt::format("{}[{} / 4][{} % 4]", GetConstBuffer(cbuf->GetIndex()),
final_offset, final_offset);

Loading…
Cancel
Save