diff options
author | Kirill Stoimenov <87100199+kstoimenov@users.noreply.github.com> | 2023-12-01 19:26:46 -0800 |
---|---|---|
committer | Kirill Stoimenov <kstoimenov@google.com> | 2023-12-02 04:39:14 +0000 |
commit | b6d0ee056d247e1ecfd4ecd3f97fb2d31740d79b (patch) | |
tree | 952c7318e0750feffbe48c682c2c532c1f3fb0f4 /llvm/unittests/TargetParser/TargetParserTest.cpp | |
parent | 28eead018d80a5384b8be6f259c3d2e2b849e8cf (diff) | |
download | llvm-b6d0ee056d247e1ecfd4ecd3f97fb2d31740d79b.zip llvm-b6d0ee056d247e1ecfd4ecd3f97fb2d31740d79b.tar.gz llvm-b6d0ee056d247e1ecfd4ecd3f97fb2d31740d79b.tar.bz2 |
Revert HWASAN failure (#74163)
This is the failure:
https://lab.llvm.org/buildbot/#/builders/236/builds/7728/steps/10/logs/stdio
This started with eef8e1d206dc01c081a0ca29b7f9e0c39d33446e, but because
there were a couple of patches that came after that I had to revert all
3 of them because of merge conflicts.
Diffstat (limited to 'llvm/unittests/TargetParser/TargetParserTest.cpp')
-rw-r--r-- | llvm/unittests/TargetParser/TargetParserTest.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/unittests/TargetParser/TargetParserTest.cpp b/llvm/unittests/TargetParser/TargetParserTest.cpp index 8e1a29d..abd87b4 100644 --- a/llvm/unittests/TargetParser/TargetParserTest.cpp +++ b/llvm/unittests/TargetParser/TargetParserTest.cpp @@ -1807,8 +1807,7 @@ TEST(TargetParserTest, AArch64ExtensionFeatures) { AArch64::AEK_SSVE_FP8DOT2, AArch64::AEK_FP8DOT4, AArch64::AEK_SSVE_FP8DOT4, AArch64::AEK_LUT, AArch64::AEK_SME_LUTv2, AArch64::AEK_SMEF8F16, - AArch64::AEK_SMEF8F32, AArch64::AEK_SMEFA64, - AArch64::AEK_CPA}; + AArch64::AEK_SMEF8F32, AArch64::AEK_SMEFA64}; std::vector<StringRef> Features; @@ -1894,7 +1893,6 @@ TEST(TargetParserTest, AArch64ExtensionFeatures) { EXPECT_TRUE(llvm::is_contained(Features, "+sme-f8f16")); EXPECT_TRUE(llvm::is_contained(Features, "+sme-f8f32")); EXPECT_TRUE(llvm::is_contained(Features, "+sme-fa64")); - EXPECT_TRUE(llvm::is_contained(Features, "+cpa")); // Assuming we listed every extension above, this should produce the same // result. (note that AEK_NONE doesn't have a name so it won't be in the |