diff options
author | 2020-02-12 10:52:22 +0000 | |
---|---|---|
committer | 2020-02-20 07:15:30 +0000 | |
commit | be0d3cff84c69c497487d39c4022d604a7907d5b (patch) | |
tree | 15364a8eb252f9645bb1cf3f9fe9d2017f1ed5fa /libartbase/arch/instruction_set_test.cc | |
parent | 5945de03b6f6b35bcf6a575b2291e29ae7a2b1ee (diff) |
Remove remaining MIPS support.
With the exception of dwarf support in libelffile.
Test: aosp_taimen-userdebug boots.
Test: m test-art-host-gtest
Test: testrunner.py --host --optimizing
Bug: 147346243
Change-Id: Ib25acbc98aa7f63ce49a7ed2f81a4a64d48eac39
Diffstat (limited to 'libartbase/arch/instruction_set_test.cc')
-rw-r--r-- | libartbase/arch/instruction_set_test.cc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libartbase/arch/instruction_set_test.cc b/libartbase/arch/instruction_set_test.cc index 12a117d7a1..26071f1d06 100644 --- a/libartbase/arch/instruction_set_test.cc +++ b/libartbase/arch/instruction_set_test.cc @@ -27,8 +27,6 @@ TEST(InstructionSetTest, GetInstructionSetFromString) { EXPECT_EQ(InstructionSet::kArm64, GetInstructionSetFromString("arm64")); EXPECT_EQ(InstructionSet::kX86, GetInstructionSetFromString("x86")); EXPECT_EQ(InstructionSet::kX86_64, GetInstructionSetFromString("x86_64")); - EXPECT_EQ(InstructionSet::kMips, GetInstructionSetFromString("mips")); - EXPECT_EQ(InstructionSet::kMips64, GetInstructionSetFromString("mips64")); EXPECT_EQ(InstructionSet::kNone, GetInstructionSetFromString("none")); EXPECT_EQ(InstructionSet::kNone, GetInstructionSetFromString("random-string")); } @@ -39,8 +37,6 @@ TEST(InstructionSetTest, GetInstructionSetString) { EXPECT_STREQ("arm64", GetInstructionSetString(InstructionSet::kArm64)); EXPECT_STREQ("x86", GetInstructionSetString(InstructionSet::kX86)); EXPECT_STREQ("x86_64", GetInstructionSetString(InstructionSet::kX86_64)); - EXPECT_STREQ("mips", GetInstructionSetString(InstructionSet::kMips)); - EXPECT_STREQ("mips64", GetInstructionSetString(InstructionSet::kMips64)); EXPECT_STREQ("none", GetInstructionSetString(InstructionSet::kNone)); } @@ -53,10 +49,6 @@ TEST(InstructionSetTest, GetInstructionSetInstructionAlignment) { kX86InstructionAlignment); EXPECT_EQ(GetInstructionSetInstructionAlignment(InstructionSet::kX86_64), kX86_64InstructionAlignment); - EXPECT_EQ(GetInstructionSetInstructionAlignment(InstructionSet::kMips), - kMipsInstructionAlignment); - EXPECT_EQ(GetInstructionSetInstructionAlignment(InstructionSet::kMips64), - kMips64InstructionAlignment); } TEST(InstructionSetTest, TestRoundTrip) { |