@@ -166,9 +166,10 @@ BasicBlockSectionsProfileReader::getPrefetchTargetsForFunction(
166166// This is the beginning of the basic block for `i = 0` and immediately after
167167// the `i`-th call for every `i > 0`.
168168//
169- // Example: A basic block in function "foo" with BBID 10 and two call instructions (call_A, call_B).
170- // This block is conceptually split into subblocks, with the prefetch target
171- // symbol emitted at the beginning of each subblock.
169+ // Example: A basic block in function "foo" with BBID 10 and two call
170+ // instructions (call_A, call_B). This block is conceptually split into
171+ // subblocks, with the prefetch target symbol emitted at the beginning of each
172+ // subblock.
172173//
173174// +----------------------------------+
174175// | __llvm_prefetch_target_foo_10_0: | <- Subblock 0 (before call_A)
@@ -352,8 +353,8 @@ Error BasicBlockSectionsProfileReader::ReadV1Profile() {
352353 SmallVector<StringRef, 2 > PrefetchTargetStr;
353354 Values[0 ].split (PrefetchTargetStr, ' ,' );
354355 if (PrefetchTargetStr.size () != 2 )
355- return createProfileParseError (
356- Twine ( " Callsite target expected: " ) + Values[0 ]);
356+ return createProfileParseError (Twine ( " Callsite target expected: " ) +
357+ Values[0 ]);
357358 auto TargetBBID = parseUniqueBBID (PrefetchTargetStr[0 ]);
358359 if (!TargetBBID)
359360 return TargetBBID.takeError ();
0 commit comments