Chromium Code Reviews| 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( |
|
Jakob Kummerow
2013/02/07 16:17:14
Since this is not used for stubs, please move it t
Massi
2013/02/11 10:35:55
I tried, but it is used in HGraphBuilder::BuildUnc
|
| + HValue* index, |
| + HValue* length, |
| + BoundsCheckKeyMode key_mode = DONT_ALLOW_SMI_KEY, |
| + Representation r = Representation::None()); |
| protected: |
| virtual bool BuildGraph() = 0; |