[vm] Remove dead ARMv5 code.

TEST=build
Change-Id: I44b41bb783b5f5cad221d4508fee18ff0a23afe7
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/325144
Reviewed-by: Zach Anderson <zra@google.com>
Commit-Queue: Ryan Macnak <rmacnak@google.com>
Reviewed-by: Ryan Macnak <rmacnak@google.com>
Reviewed-by: William Hesse <whesse@google.com>
This commit is contained in:
Ryan Macnak
2023-09-12 16:22:19 +00:00
committed by Commit Queue
parent df89d602ee
commit df54b81dd1
2 changed files with 0 additions and 9 deletions
-1
View File
@@ -109,7 +109,6 @@ bool HostCPUFeatures::integer_division_supported_ = false;
bool HostCPUFeatures::neon_supported_ = false;
bool HostCPUFeatures::hardfp_supported_ = false;
const char* HostCPUFeatures::hardware_ = nullptr;
intptr_t HostCPUFeatures::store_pc_read_offset_ = 8;
#if defined(DEBUG)
bool HostCPUFeatures::initialized_ = false;
#endif
-8
View File
@@ -43,10 +43,6 @@ class HostCPUFeatures : public AllStatic {
DEBUG_ASSERT(initialized_);
return hardfp_supported_;
}
static intptr_t store_pc_read_offset() {
DEBUG_ASSERT(initialized_);
return store_pc_read_offset_;
}
#if !defined(HOST_ARCH_ARM)
static void set_integer_division_supported(bool supported) {
@@ -64,7 +60,6 @@ class HostCPUFeatures : public AllStatic {
static bool integer_division_supported_;
static bool neon_supported_;
static bool hardfp_supported_;
static intptr_t store_pc_read_offset_;
#if defined(DEBUG)
static bool initialized_;
#endif
@@ -81,9 +76,6 @@ class TargetCPUFeatures : public AllStatic {
static bool neon_supported() { return HostCPUFeatures::neon_supported(); }
static bool hardfp_supported() { return HostCPUFeatures::hardfp_supported(); }
static const char* hardware() { return HostCPUFeatures::hardware(); }
static intptr_t store_pc_read_offset() {
return HostCPUFeatures::store_pc_read_offset();
}
};
} // namespace dart