Skip to content

Commit

Permalink
replace hardcoded literal with its appropriate symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptonote-social committed Jun 27, 2020
1 parent 7741eb1 commit a7733de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jit_compiler_x86.cpp
Expand Up @@ -295,7 +295,7 @@ namespace randomx {

void JitCompilerX86::generateProgramPrologue(Program& prog, ProgramConfiguration& pcfg) {
instructionOffsets.clear();
for (unsigned i = 0; i < 8; ++i) {
for (unsigned i = 0; i < RegistersCount; ++i) {
registerUsage[i] = -1;
}

Expand Down

0 comments on commit a7733de

Please sign in to comment.