Bug 669412 followup: remove variables preBytes & postBytes that are now unused after earlier patch on this bug. r=bent

This commit is contained in:
Daniel Holbert 2011-09-27 13:22:49 -07:00
Родитель 915be085e7
Коммит 53649dc2bb
1 изменённых файлов: 1 добавлений и 6 удалений

Просмотреть файл

@ -407,13 +407,8 @@ GC(JSContext *cx,
uintN argc,
jsval *vp)
{
JSRuntime *rt;
uint32 preBytes, postBytes;
rt = JS_GetRuntime(cx);
preBytes = JS_GetGCParameter(rt, JSGC_BYTES);
JSRuntime *rt = JS_GetRuntime(cx);
JS_GC(cx);
postBytes = JS_GetGCParameter(rt, JSGC_BYTES);
#ifdef JS_GCMETER
js_DumpGCStats(rt, stdout);
#endif