diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2017-01-05 15:49:54 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-05 15:49:54 +0100 |
| commit | 06461f1bd7a8c987b47381dffa3e1462cee8e44f (patch) | |
| tree | 0aeb18299450539af192263cf58b720a170561e9 /miasm2/jitter/arch/JitCore_x86.c | |
| parent | afdeb68de2b634c600c30f61422f9fd59286376c (diff) | |
| parent | 6b670aecbadb14cbe28bad9e987fbd5969d2ec63 (diff) | |
| download | miasm-06461f1bd7a8c987b47381dffa3e1462cee8e44f.tar.gz miasm-06461f1bd7a8c987b47381dffa3e1462cee8e44f.zip | |
Merge pull request #468 from commial/feature/llvm-float
Feature/llvm float
Diffstat (limited to 'miasm2/jitter/arch/JitCore_x86.c')
| -rw-r--r-- | miasm2/jitter/arch/JitCore_x86.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/miasm2/jitter/arch/JitCore_x86.c b/miasm2/jitter/arch/JitCore_x86.c index 66c3fb56..461e2224 100644 --- a/miasm2/jitter/arch/JitCore_x86.c +++ b/miasm2/jitter/arch/JitCore_x86.c @@ -603,6 +603,9 @@ PyObject* get_gpreg_offset_all(void) get_reg_off(exception_flags); get_reg_off(float_stack_ptr); + get_reg_off(reg_float_cs); + get_reg_off(reg_float_eip); + get_reg_off(reg_float_control); return dict; } |