diff options
| author | w4kfu <gw4kfu@gmail.com> | 2018-11-13 11:30:50 -0500 |
|---|---|---|
| committer | w4kfu <gw4kfu@gmail.com> | 2018-11-13 11:30:50 -0500 |
| commit | d4a1e3bdb46dd64a20eaf0bd378cc508b7146587 (patch) | |
| tree | 1d3a81b49b7bb3b96be8eb8c716d71a253c429e0 /miasm2/jitter/op_semantics.h | |
| parent | 599ac301037a8509cbeb3aa88a19dd314db8e683 (diff) | |
| download | miasm-d4a1e3bdb46dd64a20eaf0bd378cc508b7146587.tar.gz miasm-d4a1e3bdb46dd64a20eaf0bd378cc508b7146587.zip | |
change return type of cntleadzeros to uint64_t
Diffstat (limited to '')
| -rw-r--r-- | miasm2/jitter/op_semantics.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/jitter/op_semantics.h b/miasm2/jitter/op_semantics.h index f797e52b..921c9b9e 100644 --- a/miasm2/jitter/op_semantics.h +++ b/miasm2/jitter/op_semantics.h @@ -37,7 +37,7 @@ _MIASM_EXPORT unsigned int umul16_hi(unsigned short a, unsigned short b); _MIASM_EXPORT uint64_t rot_left(uint64_t size, uint64_t a, uint64_t b); _MIASM_EXPORT uint64_t rot_right(uint64_t size, uint64_t a, uint64_t b); -_MIASM_EXPORT unsigned int cntleadzeros(uint64_t size, uint64_t src); +_MIASM_EXPORT uint64_t cntleadzeros(uint64_t size, uint64_t src); _MIASM_EXPORT unsigned int cnttrailzeros(uint64_t size, uint64_t src); #define UDIV(sizeA) \ |