Skip to content

Commit 5f76c60

Browse files
committed
clang-format.
1 parent c7ca7c5 commit 5f76c60

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

llvm/include/llvm/CodeGen/BasicBlockSectionsProfileReader.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ struct BBClusterInfo {
4343
};
4444

4545
// Assuming a block is split into subblocks across its callsites, this struct
46-
// uniquely identifies the subblock in block `BBID` which starts from right after call number `SubblockIndex` (or
47-
// the beginning of the block if `SubblockIndex` is zero) to the call number
48-
// `SubblockIndex+1` (or the end of the block if there are are `SubblockIndex`
49-
// calls in the basic block).
46+
// uniquely identifies the subblock in block `BBID` which starts from right
47+
// after call number `SubblockIndex` (or the beginning of the block if
48+
// `SubblockIndex` is zero) to the call number `SubblockIndex+1` (or the end of
49+
// the block if there are are `SubblockIndex` calls in the basic block).
5050
struct SubblockID {
5151
UniqueBBID BBID;
5252
unsigned SubblockIndex;

llvm/lib/CodeGen/InsertCodePrefetch.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ class InsertCodePrefetch : public MachineFunctionPass {
5757
//===----------------------------------------------------------------------===//
5858

5959
char InsertCodePrefetch::ID = 0;
60-
INITIALIZE_PASS_BEGIN(InsertCodePrefetch, DEBUG_TYPE, "Code prefetch insertion", true,
61-
false)
60+
INITIALIZE_PASS_BEGIN(InsertCodePrefetch, DEBUG_TYPE, "Code prefetch insertion",
61+
true, false)
6262
INITIALIZE_PASS_DEPENDENCY(BasicBlockSectionsProfileReaderWrapperPass)
63-
INITIALIZE_PASS_END(InsertCodePrefetch, DEBUG_TYPE, "Code prefetch insertion", true,
64-
false)
63+
INITIALIZE_PASS_END(InsertCodePrefetch, DEBUG_TYPE, "Code prefetch insertion",
64+
true, false)
6565

6666
bool InsertCodePrefetch::runOnMachineFunction(MachineFunction &MF) {
6767
assert(MF.getTarget().getBBSectionsType() == BasicBlockSection::List &&

0 commit comments

Comments
 (0)