Skip to content

Commit

Permalink
Merge commit 'b4ed321' into pull-luajit-jan2018
Browse files Browse the repository at this point in the history
  • Loading branch information
lukego committed Jan 17, 2018
2 parents 98027c8 + b4ed321 commit 0dbdc24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lj_asm.c
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,7 @@ static uint32_t ir_khash(IRIns *ir)
} else {
lua_assert(irt_isgcv(ir->t));
lo = u32ptr(ir_kgc(ir));
hi = lo + HASH_BIAS;
hi = (uint32_t)(u64ptr(ir_kgc(ir)) >> 32) | (irt_toitype(ir->t) << 15);
}
return hashrot(lo, hi);
}
Expand Down

0 comments on commit 0dbdc24

Please sign in to comment.