[InlineCost] Fix indentation (NFC)

This commit is contained in:
Kazu Hirata 2020-11-26 18:00:54 -08:00
parent 2e32c49d97
commit 60e749aa23
1 changed files with 1 additions and 1 deletions

View File

@ -2578,7 +2578,7 @@ InlineCostAnnotationPrinterPass::run(Function &F,
// We can add a flag which determines InlineParams for this run. Right now,
// the default InlineParams are used.
const InlineParams Params = llvm::getInlineParams();
for (BasicBlock &BB : F) {
for (BasicBlock &BB : F) {
for (Instruction &I : BB) {
if (CallInst *CI = dyn_cast<CallInst>(&I)) {
Function *CalledFunction = CI->getCalledFunction();