Skip to content

Commit

Permalink
Merge pull request #188 from cryptonote-social/master
Browse files Browse the repository at this point in the history
replace hardcoded literal with its appropriate symbol
  • Loading branch information
tevador authored Jun 28, 2020
2 parents 863765b + a7733de commit 9905ec9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jit_compiler_x86.cpp
Original file line number Diff line number Diff line change
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 9905ec9

Please sign in to comment.