diff options
author | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2013-12-17 19:42:25 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2013-12-17 19:42:25 +0000 |
commit | 9d935509fdb48e47cc46e81d2b9d466b18b546ba (patch) | |
tree | 90d42d5f564146e21609e72ca8b9445356519fbe /target-arm/Makefile.objs | |
parent | f46e720a82ccdf1a521cf459448f3f96ed895d43 (diff) | |
download | qemu-9d935509fdb48e47cc46e81d2b9d466b18b546ba.zip |
target-arm: add support for v8 AES instructions
This adds support for the AESE/AESD/AESMC/AESIMC instructions that
are available on some v8 implementations of Aarch32.
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Message-id: 1386266078-6976-1-git-send-email-ard.biesheuvel@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target-arm/Makefile.objs')
-rw-r--r-- | target-arm/Makefile.objs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-arm/Makefile.objs b/target-arm/Makefile.objs index 356fbfcdfd..f428b5b7d7 100644 --- a/target-arm/Makefile.objs +++ b/target-arm/Makefile.objs @@ -6,3 +6,4 @@ 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-y += crypto_helper.o |