1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

LLVM linux fixes

This commit is contained in:
Brian Fiete 2024-05-07 18:09:01 -04:00
parent 29f6313bb3
commit b0a559e464
9 changed files with 36 additions and 184 deletions

View file

@ -1113,7 +1113,7 @@ void X64CPU::GetClobbersForMnemonic(const StringImpl& mnemonic, int argCount, Ar
outMayClobberMem = true;
int numImplicits = (int)desc.implicit_defs().size();
auto& impPtr = desc.implicit_defs();
auto impPtr = desc.implicit_defs();
for (int iImp = 0; iImp<numImplicits; ++iImp)
impRegs.Add(impPtr[iImp]);
}