Index: src/hydrogen.cc |
diff --git a/src/hydrogen.cc b/src/hydrogen.cc |
index f25efbfbc3e44bdbaf7b84cf156fef687584967f..3680ca1fea744b78cf75500937307d4817e2c909 100644 |
--- a/src/hydrogen.cc |
+++ b/src/hydrogen.cc |
@@ -11461,9 +11461,6 @@ void HOptimizedGraphBuilder::GenerateTwoByteSeqStringSetChar( |
HValue* value = Pop(); |
HValue* index = Pop(); |
HValue* string = Pop(); |
- HValue* context = environment()->LookupContext(); |
- HInstruction* char_code = BuildStringCharCodeAt(context, string, index); |
- AddInstruction(char_code); |
HSeqStringSetChar* result = new(zone()) HSeqStringSetChar( |
String::TWO_BYTE_ENCODING, string, index, value); |
return ast_context()->ReturnInstruction(result, call->id()); |