Index: src/x64/lithium-x64.cc |
diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc |
index a29a337836f336baa754a3291bd081413a6064f9..e73034f73761d149bf15526576586a35b89eb1c0 100644 |
--- a/src/x64/lithium-x64.cc |
+++ b/src/x64/lithium-x64.cc |
@@ -1895,6 +1895,13 @@ LInstruction* LChunkBuilder::DoStringCharCodeAt(HStringCharCodeAt* instr) { |
} |
+LInstruction* LChunkBuilder::DoStringCharFromCode(HStringCharFromCode* instr) { |
+ LOperand* char_code = UseRegister(instr->value()); |
+ LStringCharFromCode* result = new LStringCharFromCode(char_code); |
+ return AssignPointerMap(DefineAsRegister(result)); |
+} |
+ |
+ |
LInstruction* LChunkBuilder::DoStringLength(HStringLength* instr) { |
LOperand* string = UseRegisterAtStart(instr->value()); |
return DefineAsRegister(new LStringLength(string)); |