Commit 665219b8 authored by danno@chromium.org's avatar danno@chromium.org

Fix stray character in last build

TBR=kmillikin@chromium.org

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@8078 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent c2394e0a
...@@ -1787,7 +1787,7 @@ LInstruction* LChunkBuilder::DoToInt32(HToInt32* instr) { ...@@ -1787,7 +1787,7 @@ LInstruction* LChunkBuilder::DoToInt32(HToInt32* instr) {
LOperand* temp2 = TempRegister(); LOperand* temp2 = TempRegister();
LOperand* temp3 = FixedTemp(d3); LOperand* temp3 = FixedTemp(d3);
LTaggedToI* res = new LTaggedToI(reg, temp1, temp2, temp3); LTaggedToI* res = new LTaggedToI(reg, temp1, temp2, temp3);
return AssigneEnvironment(DefineSameAsFirst(res)); return AssignEnvironment(DefineSameAsFirst(res));
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment