diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2023-03-29 11:55:33 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2023-06-05 12:04:28 -0700 |
commit | 8da7b594354eb66ad6e63b094d31e1d146a1558d (patch) | |
tree | 873ec2461f7b5fc37d06970065da8456629ea0db /include | |
parent | 13e27d1fa4b0b2109f91bcd078e93cb6a6d7a7cb (diff) | |
download | qemu-8da7b594354eb66ad6e63b094d31e1d146a1558d.zip qemu-8da7b594354eb66ad6e63b094d31e1d146a1558d.tar.gz qemu-8da7b594354eb66ad6e63b094d31e1d146a1558d.tar.bz2 |
tcg: Remove outdated comments in helper-head.h
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/exec/helper-head.h | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/include/exec/helper-head.h b/include/exec/helper-head.h index f863a6e..a355ef8 100644 --- a/include/exec/helper-head.h +++ b/include/exec/helper-head.h @@ -1,18 +1,6 @@ -/* Helper file for declaring TCG helper functions. - Used by other helper files. - - Targets should use DEF_HELPER_N and DEF_HELPER_FLAGS_N to declare helper - functions. Names should be specified without the helper_ prefix, and - the return and argument types specified. 3 basic types are understood - (i32, i64 and ptr). Additional aliases are provided for convenience and - to match the types used by the C helper implementation. - - The target helper.h should be included in all files that use/define - helper functions. THis will ensure that function prototypes are - consistent. In addition it should be included an extra two times for - helper.c, defining: - GEN_HELPER 1 to produce op generation functions (gen_helper_*) - GEN_HELPER 2 to do runtime registration helper functions. +/* + * Helper file for declaring TCG helper functions. + * Used by other helper files. */ #ifndef EXEC_HELPER_HEAD_H |