diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2017-01-12 12:36:04 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-12 12:36:04 +0100 |
| commit | 632f95b8ce745ef77ecb9f46054c1964ddc59e3e (patch) | |
| tree | e49f319ca48901fe107c92308175397fcf3f9230 /miasm2/jitter/vm_mngr.c | |
| parent | edf8a67791cd7e3255cce048f2deb1bea436485c (diff) | |
| parent | ccf94648a6f8d3634b8fa707f01fa9e33ad5043b (diff) | |
| download | miasm-632f95b8ce745ef77ecb9f46054c1964ddc59e3e.tar.gz miasm-632f95b8ce745ef77ecb9f46054c1964ddc59e3e.zip | |
Merge pull request #472 from commial/feature/faster-parity
Feature/faster parity
Diffstat (limited to 'miasm2/jitter/vm_mngr.c')
| -rw-r--r-- | miasm2/jitter/vm_mngr.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/miasm2/jitter/vm_mngr.c b/miasm2/jitter/vm_mngr.c index 42f91f72..c48ba334 100644 --- a/miasm2/jitter/vm_mngr.c +++ b/miasm2/jitter/vm_mngr.c @@ -76,11 +76,6 @@ const uint8_t parity_table[256] = { 0, CC_P, CC_P, 0, CC_P, 0, 0, CC_P, }; -uint8_t parity(uint64_t a) { - return parity_table[(a) & 0xFF]; -} - - // #define DEBUG_MIASM_AUTOMOD_CODE void memory_access_list_init(struct memory_access_list * access) |