diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2015-11-14 18:45:19 +0100 |
|---|---|---|
| committer | serpilliere <serpilliere@users.noreply.github.com> | 2015-11-14 18:45:19 +0100 |
| commit | d7316f0e60be635f6c3451b83f47f0c0b79a3721 (patch) | |
| tree | e3c278444b86b0d6250792dee43b618d2f61c865 /miasm2/jitter/vm_mngr.h | |
| parent | 00f568729a938465f83c8c73fe49462779673222 (diff) | |
| parent | 8ae102ba0fd8231c9d491a308144b0dd5424e0df (diff) | |
| download | miasm-d7316f0e60be635f6c3451b83f47f0c0b79a3721.tar.gz miasm-d7316f0e60be635f6c3451b83f47f0c0b79a3721.zip | |
Merge pull request #267 from commial/fix-sem-x86
Fix sem x86
Diffstat (limited to 'miasm2/jitter/vm_mngr.h')
| -rw-r--r-- | miasm2/jitter/vm_mngr.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/miasm2/jitter/vm_mngr.h b/miasm2/jitter/vm_mngr.h index 8653dd55..f5895e12 100644 --- a/miasm2/jitter/vm_mngr.h +++ b/miasm2/jitter/vm_mngr.h @@ -206,8 +206,7 @@ unsigned int div_op(unsigned int size, unsigned int a, unsigned int b, unsigned unsigned int rem_op(unsigned int size, unsigned int a, unsigned int b, unsigned int c); uint64_t rot_left(uint64_t size, uint64_t a, uint64_t b); uint64_t rot_right(uint64_t size, uint64_t a, uint64_t b); -int rcl_rez_op(unsigned int size, unsigned int a, unsigned int b, unsigned int cf); -int rcl_cf_op(unsigned int size, unsigned int a, unsigned int b, unsigned int cf); +unsigned int rcl_rez_op(unsigned int size, unsigned int a, unsigned int b, unsigned int cf); #define UDIV(sizeA) \ |