Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(381)

Unified Diff: src/zone/zone-allocator.h

Issue 2410673002: [Turbofan] Add concept of FP register aliasing on ARM 32. (Closed)
Patch Set: Add a TODO. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/register-configuration.cc ('k') | test/cctest/compiler/test-gap-resolver.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/zone/zone-allocator.h
diff --git a/src/zone/zone-allocator.h b/src/zone/zone-allocator.h
index 8370d73e49b2fc1337162410fe39011512a6baf1..1e2862a2c1144b018884d6c55643f301c6bff3be 100644
--- a/src/zone/zone-allocator.h
+++ b/src/zone/zone-allocator.h
@@ -26,6 +26,8 @@ class zone_allocator {
typedef zone_allocator<O> other;
};
+ // TODO(bbudge) Remove when V8 updates to MSVS 2015. See crbug.com/603131.
+ zone_allocator() : zone_(nullptr) { UNREACHABLE(); }
explicit zone_allocator(Zone* zone) throw() : zone_(zone) {}
explicit zone_allocator(const zone_allocator& other) throw()
: zone_(other.zone_) {}
@@ -62,7 +64,6 @@ class zone_allocator {
Zone* zone() { return zone_; }
private:
- zone_allocator();
Zone* zone_;
};
« no previous file with comments | « src/register-configuration.cc ('k') | test/cctest/compiler/test-gap-resolver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698