13 changes: 0 additions & 13 deletions llvm/unittests/Analysis/VectorFunctionABITest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,19 +98,6 @@ class VFABIParserTest : public ::testing::Test {
};
} // unnamed namespace

// This test makes sure correct mangling occurs for given string.
TEST_F(VFABIParserTest, ManglingVectorTLINames) {
EXPECT_EQ(
VFABI::mangleTLIVectorName("vec", "scalar", 3, ElementCount::getFixed(4)),
"_ZGV_LLVM_N4vvv_scalar(vec)");
EXPECT_EQ(VFABI::mangleTLIVectorName("vec", "scalar", 3,
ElementCount::getScalable(4)),
"_ZGV_LLVM_Nxvvv_scalar(vec)");
EXPECT_EQ(VFABI::mangleTLIVectorName("custom.call.v5", "custom.call", 1,
ElementCount::getFixed(5)),
"_ZGV_LLVM_N5v_custom.call(custom.call.v5)");
}

// This test makes sure that the demangling method succeeds only on
// valid values of the string.
TEST_F(VFABIParserTest, OnlyValidNames) {
Expand Down