diff options
author | Alexander Graf <agraf@suse.de> | 2013-12-17 19:42:32 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2013-12-17 19:42:32 +0000 |
commit | d3e35a1fe4562ee3f9f1af91ab02d62cf31b9488 (patch) | |
tree | 7a343ffcc5b5fa25dfccac55f815b6fde23de7f3 /target-arm/helper.h | |
parent | 6a66942735569ec7f8b761c1205e6f4c50962fe4 (diff) |
target-arm: A64: add stubs for a64 specific helpers
We will need helpers that only make sense with AArch64. Add
helper-a64.{c,h} files as stubs that we can fill with these
helpers in the following patches.
Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target-arm/helper.h')
-rw-r--r-- | target-arm/helper.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/target-arm/helper.h b/target-arm/helper.h index 496eb6511c..73d67dcc17 100644 --- a/target-arm/helper.h +++ b/target-arm/helper.h @@ -466,4 +466,8 @@ DEF_HELPER_3(neon_qzip32, void, env, i32, i32) DEF_HELPER_4(crypto_aese, void, env, i32, i32, i32) DEF_HELPER_4(crypto_aesmc, void, env, i32, i32, i32) +#ifdef TARGET_AARCH64 +#include "helper-a64.h" +#endif + #include "exec/def-helper.h" |