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

Unified Diff: src/crankshaft/hydrogen-instructions.h

Issue 2452403003: Changed statement ZoneList to a ZoneChunkList
Patch Set: 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/crankshaft/hydrogen-gvn.cc ('k') | src/crankshaft/ia32/lithium-codegen-ia32.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/crankshaft/hydrogen-instructions.h
diff --git a/src/crankshaft/hydrogen-instructions.h b/src/crankshaft/hydrogen-instructions.h
index 9c79f68431d02fd9917c27a358b5865fe4e542ef..d04a325e1024f16ed630b59ac6d192273aa2d77c 100644
--- a/src/crankshaft/hydrogen-instructions.h
+++ b/src/crankshaft/hydrogen-instructions.h
@@ -186,7 +186,6 @@ class SmallMapList;
enum PropertyAccessType { LOAD, STORE };
-
class Range final : public ZoneObject {
public:
Range()
@@ -262,8 +261,7 @@ class Range final : public ZoneObject {
bool can_be_minus_zero_;
};
-
-class HUseListNode: public ZoneObject {
+class HUseListNode : public ZoneObject {
public:
HUseListNode(HValue* value, int index, HUseListNode* tail)
: tail_(tail), value_(value), index_(index) {
@@ -388,7 +386,6 @@ class DecompositionResult final BASE_EMBEDDED {
typedef EnumSet<GVNFlag, int32_t> GVNFlagSet;
-
class HValue : public ZoneObject {
public:
static const int kNoNumber = -1;
« no previous file with comments | « src/crankshaft/hydrogen-gvn.cc ('k') | src/crankshaft/ia32/lithium-codegen-ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698