Bug 863725 - Fix an IonSpew format string typo in Baseline IC. r=jandem

This commit is contained in:
Douglas Crosher 2013-04-20 00:23:54 +10:00
parent 823802ad6d
commit 64659d64f2

View File

@ -5116,7 +5116,7 @@ TryAttachNativeGetPropStub(JSContext *cx, HandleScript script, jsbytecode *pc,
ICStub::Kind kind = (obj == holder) ? ICStub::GetProp_Native
: ICStub::GetProp_NativePrototype;
IonSpew(IonSpew_BaselineIC, " Generating GetProp(%s %s%s) stub",
IonSpew(IonSpew_BaselineIC, " Generating GetProp(%s %s) stub",
isListBase ? "ListBase" : "Native",
(obj == holder) ? "direct" : "prototype");
ICGetPropNativeCompiler compiler(cx, kind, monitorStub, obj, holder, isFixedSlot, offset);