Index: src/compiler/change-lowering.h |
diff --git a/src/compiler/change-lowering.h b/src/compiler/change-lowering.h |
index 6d607768d9c5d56cf4c16fb58c65326730c926b8..defadd95fd098d65f4ce9cd201158e34c67afe52 100644 |
--- a/src/compiler/change-lowering.h |
+++ b/src/compiler/change-lowering.h |
@@ -56,6 +56,14 @@ class ChangeLowering final : public Reducer { |
Reduction StoreElement(Node* node); |
Reduction Allocate(Node* node); |
+ Node* IsSmi(Node* value); |
+ Node* LoadHeapObjectMap(Node* object, Node* control); |
+ Node* LoadMapInstanceType(Node* map); |
+ |
+ Reduction ObjectIsNumber(Node* node); |
+ Reduction ObjectIsReceiver(Node* node); |
+ Reduction ObjectIsSmi(Node* node); |
+ |
Node* ComputeIndex(const ElementAccess& access, Node* const key); |
Graph* graph() const; |
Isolate* isolate() const; |