mirror of
https://github.com/LuaJIT/LuaJIT.git
synced 2025-02-07 23:24:09 +00:00
Clean up code
This commit is contained in:
parent
035550b4f7
commit
126a4475dd
@ -1112,8 +1112,8 @@ int lj_record_mm_lookup(jit_State *J, RecordIndex *ix, MMS mm)
|
||||
kmt = lj_ir_ktab(J, mt);
|
||||
} else {
|
||||
IRRef ref;
|
||||
for (ref = J->chain[IR_KGC]; ref; ref = J->cur.ir[ref].prev) {
|
||||
if (ir_kgc(&J->cur.ir[ref]) == obj2gco(mt)) {
|
||||
for (ref = J->chain[IR_KGC]; ref; ref = IR(ref)->prev) {
|
||||
if (ir_kgc(IR(ref)) == obj2gco(mt)) {
|
||||
kmt = TREF(ref, IRT_TAB);
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user