[JAEGER] Fixed build.

This commit is contained in:
David Anderson 2010-06-20 16:16:51 -07:00
parent 68eadd08f9
commit 178ac0c976

View File

@ -1835,7 +1835,7 @@ mjit::Compiler::jsop_length()
if (top->isConstant()) {
JSString *str = top->getValue().asString();
Value v;
v.setNumber(str->length());
v.setNumber(uint32(str->length()));
frame.pop();
frame.push(v);
} else {