| Index: src/a64/lithium-a64.cc
|
| diff --git a/src/a64/lithium-a64.cc b/src/a64/lithium-a64.cc
|
| index 016efee0358aff587cd83c02c46b3972da0a3dae..6190122e32a741d9340e169d466cf35abd379806 100644
|
| --- a/src/a64/lithium-a64.cc
|
| +++ b/src/a64/lithium-a64.cc
|
| @@ -1999,8 +1999,12 @@ LInstruction* LChunkBuilder::DoReturn(HReturn* instr) {
|
|
|
|
|
| LInstruction* LChunkBuilder::DoSeqStringGetChar(HSeqStringGetChar* instr) {
|
| - Abort(kUnimplemented);
|
| - return NULL;
|
| + LOperand* string = UseRegisterAtStart(instr->string());
|
| + LOperand* index = UseRegisterOrConstantAtStart(instr->index());
|
| + LOperand* temp = TempRegister();
|
| + LSeqStringGetChar* result =
|
| + new(zone()) LSeqStringGetChar(string, index, temp);
|
| + return DefineAsRegister(result);
|
| }
|
|
|
|
|
|
|