diff options
author | Sam Parker <sam.parker@arm.com> | 2017-08-21 08:52:45 +0000 |
---|---|---|
committer | Sam Parker <sam.parker@arm.com> | 2017-08-21 08:52:45 +0000 |
commit | ffccda6303169b119ec313f6a10732a60dfe1b38 (patch) | |
tree | 958191d6e70016047828c6a9bd1c81d5ee721745 /clang/test/Driver/arm-ras.c | |
parent | 98c51cbee13a3d85ccfafdc580ea6249d1c47b20 (diff) | |
download | bcm5719-llvm-ffccda6303169b119ec313f6a10732a60dfe1b38.tar.gz bcm5719-llvm-ffccda6303169b119ec313f6a10732a60dfe1b38.zip |
[ARM][AArch64] Cortex-A75 and Cortex-A55 tests
Add frontend tests for Cortex-A75 and Cortex-A55, Arm's latest
big.LITTLE A-class cores. They implement the ARMv8.2-A architecture,
including the cryptography and RAS extensions, plus the optional dot
product extension. They also implement the RCpc AArch64 extension
from ARMv8.3-A.
Cortex-A75:
https://developer.arm.com/products/processors/cortex-a/cortex-a75
Cortex-A55:
https://developer.arm.com/products/processors/cortex-a/cortex-a55
Differential Revision: https://reviews.llvm.org/D36731
llvm-svn: 311319
Diffstat (limited to 'clang/test/Driver/arm-ras.c')
-rw-r--r-- | clang/test/Driver/arm-ras.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/test/Driver/arm-ras.c b/clang/test/Driver/arm-ras.c index 6d2168c160b..076bb4b5e08 100644 --- a/clang/test/Driver/arm-ras.c +++ b/clang/test/Driver/arm-ras.c @@ -1,5 +1,7 @@ // RUN: %clang -target arm-none-none-eabi -march=armv8a+ras -### -c %s 2>&1 | FileCheck --check-prefix=CHECK-RAS %s // RUN: %clang -target arm-none-none-eabi -mcpu=generic+ras -### -c %s 2>&1 | FileCheck --check-prefix=CHECK-RAS %s +// RUN: %clang -target arm-none-none-eabi -mcpu=cortex-a75 -### -c %s 2>&1 | FileCheck --check-prefix=CHECK-RAS %s +// RUN: %clang -target arm-none-none-eabi -mcpu=cortex-a55 -### -c %s 2>&1 | FileCheck --check-prefix=CHECK-RAS %s // CHECK-RAS: "-target-feature" "+ras" // RUN: %clang -target arm-none-none-eabi -march=armv8a+noras -### -c %s 2>&1 | FileCheck --check-prefix=CHECK-NORAS %s |