diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2023-03-31 20:13:36 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2023-06-05 12:04:29 -0700 |
commit | c213ee2dfc7365c0c8544fa25672d891fdffe343 (patch) | |
tree | 5e29a9ec7ea7907189c14f4ec6e3ad54c643875b /target/hexagon | |
parent | e4eff8e4edc188b5eee8834479b515325889e27a (diff) | |
download | qemu-c213ee2dfc7365c0c8544fa25672d891fdffe343.zip qemu-c213ee2dfc7365c0c8544fa25672d891fdffe343.tar.gz qemu-c213ee2dfc7365c0c8544fa25672d891fdffe343.tar.bz2 |
tcg: Split helper-proto.h
Create helper-proto-common.h without the target specific portion.
Use that in tcg-op-common.h. Include helper-proto.h in target/arm
and target/hexagon before helper-info.c.inc; all other targets are
already correct in this regard.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/hexagon')
-rw-r--r-- | target/hexagon/translate.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/hexagon/translate.c b/target/hexagon/translate.c index 00e2503..770de58 100644 --- a/target/hexagon/translate.c +++ b/target/hexagon/translate.c @@ -21,6 +21,7 @@ #include "tcg/tcg-op.h" #include "tcg/tcg-op-gvec.h" #include "exec/helper-gen.h" +#include "exec/helper-proto.h" #include "exec/cpu_ldst.h" #include "exec/log.h" #include "internal.h" |