浏览代码

Hashed in more flags

Brian Fiete 4 年之前
父节点
当前提交
1c1cb1ac49
共有 1 个文件被更改,包括 7 次插入1 次删除
  1. 7 1
      IDEHelper/Backend/BeModule.cpp

+ 7 - 1
IDEHelper/Backend/BeModule.cpp

@@ -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)