diff options
| author | Ajax <commial@gmail.com> | 2018-06-22 17:08:14 +0200 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2018-06-22 18:34:07 +0200 |
| commit | f5aa0474bd7ea8078bacf0085ff6942d1cf3bc42 (patch) | |
| tree | ced648599a24b6b82eea2d466b80d7f5f1aaf3be /miasm2/jitter/Jitgcc.c | |
| parent | e334e25a848bf8311ff3cd0c00d2c5f471e007f5 (diff) | |
| download | miasm-f5aa0474bd7ea8078bacf0085ff6942d1cf3bc42.tar.gz miasm-f5aa0474bd7ea8078bacf0085ff6942d1cf3bc42.zip | |
Jitcore: remove useless strucs and rename for more meaningful names
Diffstat (limited to 'miasm2/jitter/Jitgcc.c')
| -rw-r--r-- | miasm2/jitter/Jitgcc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/miasm2/jitter/Jitgcc.c b/miasm2/jitter/Jitgcc.c index 79274f24..6273627a 100644 --- a/miasm2/jitter/Jitgcc.c +++ b/miasm2/jitter/Jitgcc.c @@ -10,7 +10,7 @@ typedef struct { typedef int (*jitted_func)(block_id*, PyObject*); -PyObject* gcc_exec_bloc(PyObject* self, PyObject* args) +PyObject* gcc_exec_block(PyObject* self, PyObject* args) { jitted_func func; PyObject* jitcpu; @@ -85,8 +85,8 @@ static PyObject *GccError; static PyMethodDef GccMethods[] = { - {"gcc_exec_bloc", gcc_exec_bloc, METH_VARARGS, - "gcc exec bloc"}, + {"gcc_exec_block", gcc_exec_block, METH_VARARGS, + "gcc exec block"}, {NULL, NULL, 0, NULL} /* Sentinel */ }; |