mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1199719 werr.2 - Remove some of the uninitialized variable noise. r=bbouvier
This commit is contained in:
parent
5a3c515c3a
commit
038e87b818
@ -1438,7 +1438,9 @@ AsmJSModule::CodeRange::CodeRange(AsmJSExit::BuiltinKind builtin, uint32_t begin
|
||||
void
|
||||
AsmJSModule::CodeRange::updateOffsets(jit::MacroAssembler& masm)
|
||||
{
|
||||
uint32_t entryBefore, profilingJumpBefore, profilingEpilogueBefore;
|
||||
uint32_t entryBefore = 0;
|
||||
uint32_t profilingJumpBefore = 0;
|
||||
uint32_t profilingEpilogueBefore = 0;
|
||||
if (isFunction()) {
|
||||
entryBefore = entry();
|
||||
profilingJumpBefore = profilingJump();
|
||||
|
Loading…
Reference in New Issue
Block a user