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/Makefile.objs | |
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/Makefile.objs')
-rw-r--r-- | target-arm/Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-arm/Makefile.objs b/target-arm/Makefile.objs index 190499f068..dcd167e0d8 100644 --- a/target-arm/Makefile.objs +++ b/target-arm/Makefile.objs @@ -7,5 +7,5 @@ obj-$(call lnot,$(CONFIG_KVM)) += kvm-stub.o obj-y += translate.o op_helper.o helper.o cpu.o obj-y += neon_helper.o iwmmxt_helper.o obj-y += gdbstub.o -obj-$(TARGET_AARCH64) += cpu64.o translate-a64.o gdbstub64.o +obj-$(TARGET_AARCH64) += cpu64.o translate-a64.o helper-a64.o gdbstub64.o obj-y += crypto_helper.o |