diff options
| author | Philipp Tomsich <philipp.tomsich@vrull.eu> | 2022-05-08 21:40:28 +0200 |
|---|---|---|
| committer | Philipp Tomsich <philipp.tomsich@vrull.eu> | 2022-05-09 11:29:42 +0200 |
| commit | 91b24b018062c8650abfbd10f7da80a0c92266a7 (patch) | |
| tree | 864ab3b9b6eccb668602ce97f85073247bde85ff /llvm/unittests/Support/TargetParserTest.cpp | |
| parent | 7dcd0ea683ed3175bc3ec6aed24901a9d504182e (diff) | |
| download | llvm-91b24b018062c8650abfbd10f7da80a0c92266a7.zip llvm-91b24b018062c8650abfbd10f7da80a0c92266a7.tar.gz llvm-91b24b018062c8650abfbd10f7da80a0c92266a7.tar.bz2 | |
[AArch64] Ampere1 does not support MTE
The initial support for the Ampere1 mistakenly signalled support for
the MTE feature. However, the core does not include the optional MTE
functionality.
Update the target parser to not include MTE for Ampere1.
Reviewed By: dmgreen
Differential Revision: https://reviews.llvm.org/D125191
Diffstat (limited to 'llvm/unittests/Support/TargetParserTest.cpp')
| -rw-r--r-- | llvm/unittests/Support/TargetParserTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/Support/TargetParserTest.cpp b/llvm/unittests/Support/TargetParserTest.cpp index e9d6a3f..90b9f12 100644 --- a/llvm/unittests/Support/TargetParserTest.cpp +++ b/llvm/unittests/Support/TargetParserTest.cpp @@ -1201,7 +1201,7 @@ INSTANTIATE_TEST_SUITE_P( AArch64::AEK_RDM | AArch64::AEK_RCPC | AArch64::AEK_DOTPROD | AArch64::AEK_SM4 | AArch64::AEK_SHA3 | AArch64::AEK_BF16 | AArch64::AEK_SHA2 | AArch64::AEK_AES | AArch64::AEK_I8MM | - AArch64::AEK_MTE | AArch64::AEK_SSBS | AArch64::AEK_SB, + AArch64::AEK_SSBS | AArch64::AEK_SB, "8.6-A"), ARMCPUTestParams( "neoverse-512tvb", "armv8.4-a", "crypto-neon-fp-armv8", |
