Index: src/spaces.h |
diff --git a/src/spaces.h b/src/spaces.h |
index 6847b31968affb2e846c5f51ed922a6b81b337da..83653125fe51390bd776ab580378464f720bc12a 100644 |
--- a/src/spaces.h |
+++ b/src/spaces.h |
@@ -894,10 +894,6 @@ class CodeRange { |
void TearDown(); |
bool exists() { return this != NULL && code_range_ != NULL; } |
- Address start() { |
- if (this == NULL || code_range_ == NULL) return NULL; |
- return static_cast<Address>(code_range_->address()); |
- } |
bool contains(Address address) { |
if (this == NULL || code_range_ == NULL) return false; |
Address start = static_cast<Address>(code_range_->address()); |