Hash table update

This commit is contained in:
kobalicek
2019-12-24 15:57:59 +01:00
parent ac77dfcd75
commit eea0a22b3b
17 changed files with 239 additions and 77 deletions

View File

@@ -504,13 +504,13 @@ public:
cc.setArg(1, val);
cc.cmp(val, 0);
cc.je(L0);
cc.je(L2);
cc.cmp(val, 1);
cc.je(L1);
cc.cmp(val, 2);
cc.je(L2);
cc.je(L0);
cc.mov(x86::dword_ptr(dst), val);
cc.jmp(LEnd);