mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
Hashed in more flags
This commit is contained in:
parent
42bee45635
commit
1c1cb1ac49
1 changed files with 7 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue