Chromium Code Reviews| Index: runtime/vm/intrinsifier_ia32.cc |
| diff --git a/runtime/vm/intrinsifier_ia32.cc b/runtime/vm/intrinsifier_ia32.cc |
| index a539284352df54c2b5f07c8422fcfcc2d5be3cc6..2199acb228a930fbc4490f890b850fe26f3b076c 100644 |
| --- a/runtime/vm/intrinsifier_ia32.cc |
| +++ b/runtime/vm/intrinsifier_ia32.cc |
| @@ -1741,6 +1741,12 @@ void Intrinsifier::StringBaseCodeUnitAt(Assembler* assembler) { |
| } |
| +// bool _substringMatches(int start, String other) |
| +void Intrinsifier::StringBaseSubstringMatches(Assembler* assembler) { |
| + // For precompilation / not enough registers. |
|
srdjan
2015/11/18 17:57:12
I would remove 'not enough registers', and just le
rmacnak
2015/11/18 22:33:32
Done.
|
| +} |
| + |
| + |
| void Intrinsifier::StringBaseCharAt(Assembler* assembler) { |
| Label fall_through, try_two_byte_string; |
| __ movl(EBX, Address(ESP, + 1 * kWordSize)); // Index. |