Index: src/ia32/lithium-ia32.cc |
diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc |
index 81797534d3f093380a593e92d7c1250a17381f40..2afba9a2af391c27d13afc4f79821cc06480a76c 100644 |
--- a/src/ia32/lithium-ia32.cc |
+++ b/src/ia32/lithium-ia32.cc |
@@ -1845,7 +1845,6 @@ LInstruction* LChunkBuilder::DoSeqStringSetChar(HSeqStringSetChar* instr) { |
LOperand* string = UseRegister(instr->string()); |
LOperand* index = UseRegister(instr->index()); |
ASSERT(ecx.is_byte_register()); |
- // TODO(titzer): the machine code for this instruction overwrites ecx! fix! |
LOperand* value = UseFixed(instr->value(), ecx); |
LSeqStringSetChar* result = |
new(zone()) LSeqStringSetChar(instr->encoding(), string, index, value); |