1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

Hashed in more flags

This commit is contained in:
Brian Fiete 2021-06-28 09:43:13 -07:00
parent 42bee45635
commit 1c1cb1ac49

View file

@ -564,7 +564,13 @@ void BeFunction::HashContent(BeHashContext& hashCtx)
hashCtx.Mixin(TypeId);
hashCtx.MixinStr(mName);
hashCtx.Mixin(mLinkageType);
hashCtx.Mixin(mAlwaysInline);
hashCtx.Mixin(mAlwaysInline);
hashCtx.Mixin(mNoUnwind);
hashCtx.Mixin(mUWTable);
hashCtx.Mixin(mNoReturn);
hashCtx.Mixin(mNoFramePointerElim);
hashCtx.Mixin(mIsDLLExport);
hashCtx.Mixin(mIsDLLImport);
hashCtx.Mixin(mCallingConv);
for (auto block : mBlocks)