diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2017-01-05 10:41:32 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-05 10:41:32 +0100 |
| commit | c551e1e761b14b962ae327e6752599b7934ba9cc (patch) | |
| tree | 4ed186bb5cef2793569d125f42b681dbac4b2fb4 /miasm2/jitter/vm_mngr.h | |
| parent | 2b93bc6682f3a08a5eccccefa135535708434f9e (diff) | |
| parent | 66d61fa8b799214f42be7ba42fe8138e302978bb (diff) | |
| download | miasm-c551e1e761b14b962ae327e6752599b7934ba9cc.tar.gz miasm-c551e1e761b14b962ae327e6752599b7934ba9cc.zip | |
Merge pull request #458 from commial/feature-llvm-jitter
Feature llvm jitter
Diffstat (limited to 'miasm2/jitter/vm_mngr.h')
| -rw-r--r-- | miasm2/jitter/vm_mngr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/jitter/vm_mngr.h b/miasm2/jitter/vm_mngr.h index d3583b52..88ecf34d 100644 --- a/miasm2/jitter/vm_mngr.h +++ b/miasm2/jitter/vm_mngr.h @@ -194,7 +194,7 @@ int vm_write_mem(vm_mngr_t* vm_mngr, uint64_t addr, char *buffer, uint64_t size) extern const uint8_t parity_table[256]; -#define parity(a) (parity_table[(a) & 0xFF]) +uint8_t parity(uint64_t a); unsigned int my_imul08(unsigned int a, unsigned int b); |