Remove an unused line of code

This commit is contained in:
miloyip 2015-05-28 10:44:52 +08:00
parent 960bc0eabd
commit a5ac3b5dbc

View File

@ -462,7 +462,6 @@ private:
void CloneTopOperand(Stack<Allocator>& operandStack) {
const Frag *src = operandStack.template Top<Frag>();
SizeType minIndex = minIndex;
SizeType count = stateCount_ - src->minIndex; // Assumes top operand contains states in [src->minIndex, stateCount_)
State* s = states_.template Push<State>(count);
memcpy(s, &GetState(src->minIndex), count * sizeof(State));