зеркало из https://github.com/mozilla/pjs.git
Add static_cast<void*> to pointer arg for %p in format string, to to fix GCC warning. No Bug #, r=jorendorff
This commit is contained in:
Родитель
523de06a96
Коммит
38b8e5cc37
|
@ -726,7 +726,8 @@ class CallCompiler : public BaseCompiler
|
|||
JSC::CodeLocationLabel(jit->fastEntry));
|
||||
|
||||
JaegerSpew(JSpew_PICs, "patched CALL path %p (obj: %p)\n",
|
||||
ic.funGuard.executableAddress(), ic.fastGuardedObject);
|
||||
ic.funGuard.executableAddress(),
|
||||
static_cast<void*>(ic.fastGuardedObject));
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче