diff options
| author | Camille Mougey <commial@gmail.com> | 2018-07-16 11:07:56 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-16 11:07:56 +0200 |
| commit | 35074d6565d53f6f655af1a101e51ace1015290b (patch) | |
| tree | 9a63804aee2a2d957de1ca1873a32d0ca305d917 /miasm2/jitter/op_semantics.c | |
| parent | 4a1dc7ab1796f5aecb35c2e4633b08f68ab21cef (diff) | |
| parent | c1980535a872cbd0e8a39b32e16a8e9d318c8134 (diff) | |
| download | miasm-35074d6565d53f6f655af1a101e51ace1015290b.tar.gz miasm-35074d6565d53f6f655af1a101e51ace1015290b.zip | |
Merge pull request #800 from serpilliere/jit_bignum
Jitter: use bignum
Diffstat (limited to '')
| -rw-r--r-- | miasm2/jitter/op_semantics.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/miasm2/jitter/op_semantics.c b/miasm2/jitter/op_semantics.c index 0bc3fcc5..061e7736 100644 --- a/miasm2/jitter/op_semantics.c +++ b/miasm2/jitter/op_semantics.c @@ -776,22 +776,22 @@ uint64_t fpround_towardszero_fp64(uint64_t a) } +UDIV(8) UDIV(16) UDIV(32) UDIV(64) -UDIV(128) +UMOD(8) UMOD(16) UMOD(32) UMOD(64) -UMOD(128) +IDIV(8) IDIV(16) IDIV(32) IDIV(64) -IDIV(128) +IMOD(8) IMOD(16) IMOD(32) IMOD(64) -IMOD(128) |