From e911f02288ee49e579a7e8fefb22b78ec66733f5 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Sat, 7 Sep 2019 07:10:02 -0700 Subject: [PATCH] Fixed forcing creating of func with unreified methods --- IDEHelper/Compiler/BfModuleTypeUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IDEHelper/Compiler/BfModuleTypeUtils.cpp b/IDEHelper/Compiler/BfModuleTypeUtils.cpp index ae20ffb0..7f6f4a99 100644 --- a/IDEHelper/Compiler/BfModuleTypeUtils.cpp +++ b/IDEHelper/Compiler/BfModuleTypeUtils.cpp @@ -4097,7 +4097,7 @@ void BfModule::AddMethodToWorkList(BfMethodInstance* methodInstance) return; } - if ((!methodInstance->mIRFunction) && (!methodInstance->mIsUnspecialized)) + if ((!mCompiler->mIsResolveOnly) && (!methodInstance->mIRFunction) && (methodInstance->mIsReified) && (!methodInstance->mIsUnspecialized)) { if (!mIsModuleMutable) StartExtension();