Index: src/hydrogen.h |
diff --git a/src/hydrogen.h b/src/hydrogen.h |
index e9b8a2fa836c01e2316a3c884614c497657b7709..7c34bbaf3c184953fa829b80c5c2042db393e62a 100644 |
--- a/src/hydrogen.h |
+++ b/src/hydrogen.h |
@@ -875,6 +875,11 @@ class HGraphBuilder { |
HInstruction* AddInstruction(HInstruction* instr); |
void AddSimulate(BailoutId id, |
RemovableSimulate removable = FIXED_SIMULATE); |
+ HBoundsCheck* AddBoundsCheck( |
+ HValue* index, |
+ HValue* length, |
+ BoundsCheckKeyMode key_mode = DONT_ALLOW_SMI_KEY, |
+ Representation r = Representation::None()); |
protected: |
virtual bool BuildGraph() = 0; |