File tree Expand file tree Collapse file tree 2 files changed +0
-9
lines changed Expand file tree Collapse file tree 2 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,6 @@ bool HostCPUFeatures::integer_division_supported_ = false;
109
109
bool HostCPUFeatures::neon_supported_ = false ;
110
110
bool HostCPUFeatures::hardfp_supported_ = false ;
111
111
const char * HostCPUFeatures::hardware_ = nullptr ;
112
- intptr_t HostCPUFeatures::store_pc_read_offset_ = 8 ;
113
112
#if defined(DEBUG)
114
113
bool HostCPUFeatures::initialized_ = false ;
115
114
#endif
Original file line number Diff line number Diff line change @@ -43,10 +43,6 @@ class HostCPUFeatures : public AllStatic {
43
43
DEBUG_ASSERT (initialized_);
44
44
return hardfp_supported_;
45
45
}
46
- static intptr_t store_pc_read_offset () {
47
- DEBUG_ASSERT (initialized_);
48
- return store_pc_read_offset_;
49
- }
50
46
51
47
#if !defined(HOST_ARCH_ARM)
52
48
static void set_integer_division_supported (bool supported) {
@@ -64,7 +60,6 @@ class HostCPUFeatures : public AllStatic {
64
60
static bool integer_division_supported_;
65
61
static bool neon_supported_;
66
62
static bool hardfp_supported_;
67
- static intptr_t store_pc_read_offset_;
68
63
#if defined(DEBUG)
69
64
static bool initialized_;
70
65
#endif
@@ -81,9 +76,6 @@ class TargetCPUFeatures : public AllStatic {
81
76
static bool neon_supported () { return HostCPUFeatures::neon_supported (); }
82
77
static bool hardfp_supported () { return HostCPUFeatures::hardfp_supported (); }
83
78
static const char * hardware () { return HostCPUFeatures::hardware (); }
84
- static intptr_t store_pc_read_offset () {
85
- return HostCPUFeatures::store_pc_read_offset ();
86
- }
87
79
};
88
80
89
81
} // namespace dart
You can’t perform that action at this time.
0 commit comments