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

Unified Diff: src/compiler/node-properties.h

Issue 1420283009: [turbofan] Add support for storing to double fields. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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
Index: src/compiler/node-properties.h
diff --git a/src/compiler/node-properties.h b/src/compiler/node-properties.h
index 3c65dba514ec0217544adcd1e1bc2fdb4dcb5182..21aa90139ff2dd47805bf4220c40fd087b69e8c9 100644
--- a/src/compiler/node-properties.h
+++ b/src/compiler/node-properties.h
@@ -121,6 +121,7 @@ class NodeProperties final {
DCHECK(IsTyped(node));
return node->type();
}
+ static Type* GetTypeOrAny(Node* node);
static void SetType(Node* node, Type* type) {
DCHECK_NOT_NULL(type);
node->set_type(type);

Powered by Google App Engine
This is Rietveld 408576698