Chromium Code Reviews| Index: runtime/vm/intrinsifier_x64.cc |
| diff --git a/runtime/vm/intrinsifier_x64.cc b/runtime/vm/intrinsifier_x64.cc |
| index 781cf4a117175cc58dac3922e0a487597d706d59..4d2ae1bf29f3d94dc78e505ffe0cc3c4753868ff 100644 |
| --- a/runtime/vm/intrinsifier_x64.cc |
| +++ b/runtime/vm/intrinsifier_x64.cc |
| @@ -461,6 +461,20 @@ bool Intrinsifier::Int8Array_getIndexed(Assembler* assembler) { |
| } |
| +bool Intrinsifier::Int8Array_setIndexed(Assembler* assembler) { |
| + Label fall_through; |
|
cshapiro
2012/10/08 21:40:41
Still a work in progress? This should be otherwis
|
| + __ Bind(&fall_through); |
| + return false; |
| +} |
| + |
| + |
| +bool Intrinsifier::Uint8Array_setIndexed(Assembler* assembler) { |
| + Label fall_through; |
| + __ Bind(&fall_through); |
| + return false; |
| +} |
| + |
| + |
| bool Intrinsifier::Uint8Array_getIndexed(Assembler* assembler) { |
| Label fall_through; |
| TestByteArrayIndex(assembler, &fall_through); |