Index: src/compiler/js-graph.h |
diff --git a/src/compiler/js-graph.h b/src/compiler/js-graph.h |
index 87e01f639807764e87c5565f1437f1cb5ff0f18b..a9e73575426a9fecd6d367c79503d92885d17860 100644 |
--- a/src/compiler/js-graph.h |
+++ b/src/compiler/js-graph.h |
@@ -73,6 +73,9 @@ class JSGraph : public ZoneObject { |
// Creates a NumberConstant node, usually canonicalized. |
Node* Constant(int32_t value); |
+ // Creates a NumberConstant node, usually canonicalized. |
+ Node* Constant(uint32_t value); |
+ |
// Creates a Int32Constant node, usually canonicalized. |
Node* Int32Constant(int32_t value); |
Node* Uint32Constant(uint32_t value) { |