diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2017-10-15 12:19:01 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2017-10-24 21:47:29 +0200 |
commit | 960c50e07746048a5c74f4dd29bb04763fc80eba (patch) | |
tree | 1dde42fad6d2061fa8c7a9db3f01f5bac06cd8be /tcg/tcg.h | |
parent | b7e8b17a77b94c33e1554fd5e1c1812ce05724be (diff) |
tcg: Push tcg_ctx into tcg_gen_callN
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Emilio G. Cota <cota@braap.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/tcg.h')
-rw-r--r-- | tcg/tcg.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -951,8 +951,7 @@ do {\ bool tcg_op_supported(TCGOpcode op); -void tcg_gen_callN(TCGContext *s, void *func, - TCGArg ret, int nargs, TCGArg *args); +void tcg_gen_callN(void *func, TCGArg ret, int nargs, TCGArg *args); void tcg_op_remove(TCGContext *s, TCGOp *op); TCGOp *tcg_op_insert_before(TCGContext *s, TCGOp *op, TCGOpcode opc, int narg); |