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

BP_ZONE name fix

This commit is contained in:
Brian Fiete 2021-12-28 10:42:19 -05:00
parent dbe63cd529
commit 190e52ae2e

View file

@ -19055,7 +19055,7 @@ void BfModule::ProcessMethod(BfMethodInstance* methodInstance, bool isInlineDup)
if (wantsDIData) if (wantsDIData)
{ {
BP_ZONE("BfModule::BfMethodDeclaration.DISetup"); BP_ZONE("BfModule::DoMethodDeclaration.DISetup");
BfIRMDNode diFuncType = mBfIRBuilder->DbgCreateSubroutineType(diParams); BfIRMDNode diFuncType = mBfIRBuilder->DbgCreateSubroutineType(diParams);
@ -21848,7 +21848,7 @@ static void StackOverflow()
// methodDeclaration is NULL for default constructors // methodDeclaration is NULL for default constructors
void BfModule::DoMethodDeclaration(BfMethodDeclaration* methodDeclaration, bool isTemporaryFunc, bool addToWorkList) void BfModule::DoMethodDeclaration(BfMethodDeclaration* methodDeclaration, bool isTemporaryFunc, bool addToWorkList)
{ {
BP_ZONE("BfModule::BfMethodDeclaration"); BP_ZONE("BfModule::DoMethodDeclaration");
// We could trigger a DoMethodDeclaration from a const resolver or other location, so we reset it here // We could trigger a DoMethodDeclaration from a const resolver or other location, so we reset it here
// to effectively make mIgnoreWrites method-scoped // to effectively make mIgnoreWrites method-scoped