Skip to content

Commit 1b44ccd

Browse files
committed
Fix compilation error on linux/mac
1 parent 587f6ed commit 1b44ccd

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

lib/Backend/amd64/LinearScanMD.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -510,14 +510,13 @@ IR::Instr* LinearScanMD::GeneratorBailIn::GenerateBailIn(IR::Instr* resumeLabelI
510510
LinearScan::InsertMove(LowererMD::CreateStackArgumentsSlotOpnd(this->func), this->rcxRegOpnd, instrAfter);
511511
}
512512

513-
BailInInsertionPoint insertionPoint
514-
{
513+
BailInInsertionPoint insertionPoint = {
515514
nullptr, /* raxRestoreInstr */
516515
instrAfter, /* instrInsertStackSym */
517516
instrAfter /* instrInsertRegSym */
518517
};
519518

520-
SaveInitializedRegister saveInitializedReg { false /* rax */, false /* rcx */ };
519+
SaveInitializedRegister saveInitializedReg = { false /* rax */, false /* rcx */ };
521520

522521
// 4) Restore symbols
523522
// - We don't need to restore argObjSyms because StackArgs is currently not enabled

0 commit comments

Comments
 (0)