Fixed slowdown that happened after https://reviews.llvm.org/D96045,
While running dwarfdump --statistics, it spends more than 50% of the time in collectZeroCovInlinedVars function.
In function collectStatsForObjectFile, variable InlinedFnsToBeProcessed is being created outside the for loop. The inline functions to be processed are appended and processed multiple times. Hence, moving the creation of that variable into the for loop which fixes the slowdown.