aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/Support/TargetParserTest.cpp
diff options
context:
space:
mode:
authorLucas Prates <lucas.prates@arm.com>2021-09-02 16:12:55 +0100
committerTomas Matheson <tomas.matheson@arm.com>2022-01-03 12:40:43 +0000
commitcd7f621a0aa474d6953a50226aca38d35fcac895 (patch)
treeea81a0e4c46dc610b32fe79f3a30eb6be1952830 /llvm/unittests/Support/TargetParserTest.cpp
parent8c1e520c903e0b7e758f8fbf4f1c3824f0d3efad (diff)
downloadllvm-cd7f621a0aa474d6953a50226aca38d35fcac895.zip
llvm-cd7f621a0aa474d6953a50226aca38d35fcac895.tar.gz
llvm-cd7f621a0aa474d6953a50226aca38d35fcac895.tar.bz2
[ARM][AArch64] Introduce Armv9.3-A
This patch introduces support for targetting the Armv9.3-A architecture, which should map to the existing Armv8.8-A extensions. Differential Revision: https://reviews.llvm.org/D116158
Diffstat (limited to 'llvm/unittests/Support/TargetParserTest.cpp')
-rw-r--r--llvm/unittests/Support/TargetParserTest.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/unittests/Support/TargetParserTest.cpp b/llvm/unittests/Support/TargetParserTest.cpp
index b21ead1..3ea7ed4 100644
--- a/llvm/unittests/Support/TargetParserTest.cpp
+++ b/llvm/unittests/Support/TargetParserTest.cpp
@@ -847,6 +847,7 @@ TEST(TargetParserTest, ARMparseArchProfile) {
case ARM::ArchKind::ARMV9A:
case ARM::ArchKind::ARMV9_1A:
case ARM::ArchKind::ARMV9_2A:
+ case ARM::ArchKind::ARMV9_3A:
EXPECT_EQ(ARM::ProfileKind::A, ARM::parseArchProfile(ARMArch[i]));
break;
default: