diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2021-05-14 10:13:28 -0500 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2021-05-19 12:17:11 -0500 |
commit | d051ea04d024880475e082e876e497f669bb3e4e (patch) | |
tree | fec6e63f4471ade1a0c7303a7814eb403c8bcc77 /target/i386/helper.h | |
parent | ed3c4739e99569bc9b473c9ca72503502fdf043e (diff) | |
download | qemu-d051ea04d024880475e082e876e497f669bb3e4e.zip qemu-d051ea04d024880475e082e876e497f669bb3e4e.tar.gz qemu-d051ea04d024880475e082e876e497f669bb3e4e.tar.bz2 |
target/i386: Tidy svm_check_intercept from tcg
The param argument to helper_svm_check_intercept_param is always 0;
eliminate it and rename to helper_svm_check_intercept. Fold
gen_svm_check_intercept_param into gen_svm_check_intercept.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20210514151342.384376-37-richard.henderson@linaro.org>
Diffstat (limited to 'target/i386/helper.h')
-rw-r--r-- | target/i386/helper.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/i386/helper.h b/target/i386/helper.h index f794d1c..86484a4 100644 --- a/target/i386/helper.h +++ b/target/i386/helper.h @@ -107,7 +107,7 @@ DEF_HELPER_2(inl, tl, env, i32) #ifndef CONFIG_USER_ONLY DEF_HELPER_FLAGS_4(bpt_io, TCG_CALL_NO_WG, void, env, i32, i32, tl) -DEF_HELPER_3(svm_check_intercept_param, void, env, i32, i64) +DEF_HELPER_2(svm_check_intercept, void, env, i32) DEF_HELPER_4(svm_check_io, void, env, i32, i32, i32) DEF_HELPER_3(vmrun, void, env, int, int) DEF_HELPER_1(vmmcall, void, env) |