From cb9d2686597eec7c2301e38c92ccc484716f4565 Mon Sep 17 00:00:00 2001 From: Blake Kaplan Date: Mon, 23 Feb 2009 12:11:44 -0800 Subject: [PATCH] Fix build bustage from bug 479109. --- js/src/jstracer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/src/jstracer.cpp b/js/src/jstracer.cpp index 79b7af3c59a3..219da4b4d588 100644 --- a/js/src/jstracer.cpp +++ b/js/src/jstracer.cpp @@ -3426,7 +3426,7 @@ js_AttemptToExtendTree(JSContext* cx, VMSideExit* anchor, VMSideExit* exitedFrom debug_only_v(printf("trying to attach another branch to the tree (hits = %d)\n", c->hits());) - int32& hits = c->hits(); + int32_t& hits = c->hits(); if (hits++ >= HOTEXIT && hits <= HOTEXIT+MAXEXIT) { /* start tracing secondary trace from this point */ c->lirbuf = f->lirbuf; @@ -4193,7 +4193,7 @@ js_MonitorLoopEdge(JSContext* cx, uintN& inlineCallCount) debug_only_v(printf("Looking for compat peer %d@%d, from %p (ip: %p)\n", js_FramePCToLineNumber(cx, cx->fp), - FramePCOffset(cx->fp), f, f->ip);) + FramePCOffset(cx->fp), (void*)f, f->ip);) uintN count; Fragment* match = js_FindVMCompatiblePeer(cx, f, count);