We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae91b36 commit b34d6b8Copy full SHA for b34d6b8
plugins/workflow_objc/Workflow.cpp
@@ -225,7 +225,7 @@ void Workflow::inlineMethodCalls(AnalysisContextRef ac)
225
226
if (auto info = GlobalState::analysisInfo(bv))
227
{
228
- if (info->hasObjcStubs && func->GetStart() > info->objcStubsStartEnd.first && func->GetStart() < info->objcStubsStartEnd.second)
+ if (info->hasObjcStubs && func->GetStart() >= info->objcStubsStartEnd.first && func->GetStart() < info->objcStubsStartEnd.second)
229
230
func->SetAutoInlinedDuringAnalysis({true, BN_FULL_CONFIDENCE});
231
// Do no further cleanup, this is a stub and it will be cleaned up after inlining
0 commit comments