Bug 680872 - PolyIC.cpp fails to compile on mingw-w64 r=jorendorff

This commit is contained in:
Jacek Caban 2011-08-23 17:36:04 +02:00
parent 468f586acc
commit 14ae5d32d7

View File

@ -2221,8 +2221,8 @@ GetElementIC::attachGetProp(JSContext *cx, JSObject *obj, const Value &v, jsid i
CodeLocationLabel cs = buffer.finalize(); CodeLocationLabel cs = buffer.finalize();
#if DEBUG #if DEBUG
char *chars = DeflateString(cx, v.toString()->getChars(cx), v.toString()->length()); char *chars = DeflateString(cx, v.toString()->getChars(cx), v.toString()->length());
JaegerSpew(JSpew_PICs, "generated %s stub at %p for atom 0x%lx (\"%s\") shape 0x%x (%s: %d)\n", JaegerSpew(JSpew_PICs, "generated %s stub at %p for atom %p (\"%s\") shape 0x%x (%s: %d)\n",
js_CodeName[op], cs.executableAddress(), (unsigned long) JSID_TO_ATOM(id), chars, js_CodeName[op], cs.executableAddress(), (void*)JSID_TO_ATOM(id), chars,
holder->shape(), cx->fp()->script()->filename, CurrentLine(cx)); holder->shape(), cx->fp()->script()->filename, CurrentLine(cx));
cx->free_(chars); cx->free_(chars);
#endif #endif