diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2015-03-05 02:28:25 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2015-03-05 02:28:25 +0000 |
commit | d0dced58ab4935a8dc880e0df03f400de7c155aa (patch) | |
tree | 094473f044b84eaacfb6f23f9681b44482310de1 /llvm/lib/CodeGen/MachineBlockPlacement.cpp | |
parent | bb49a5de1257463a85925bdc6107bea900d95ada (diff) | |
download | llvm-d0dced58ab4935a8dc880e0df03f400de7c155aa.zip llvm-d0dced58ab4935a8dc880e0df03f400de7c155aa.tar.gz llvm-d0dced58ab4935a8dc880e0df03f400de7c155aa.tar.bz2 |
[MBP] This is no longer 'block-placement2'. ;] The old variants are long
gone, update this code to reflect that.
llvm-svn: 231340
Diffstat (limited to 'llvm/lib/CodeGen/MachineBlockPlacement.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineBlockPlacement.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/MachineBlockPlacement.cpp b/llvm/lib/CodeGen/MachineBlockPlacement.cpp index e4ddb04..e022c7b 100644 --- a/llvm/lib/CodeGen/MachineBlockPlacement.cpp +++ b/llvm/lib/CodeGen/MachineBlockPlacement.cpp @@ -47,7 +47,7 @@ #include <algorithm> using namespace llvm; -#define DEBUG_TYPE "block-placement2" +#define DEBUG_TYPE "block-placement" STATISTIC(NumCondBranches, "Number of conditional branches"); STATISTIC(NumUncondBranches, "Number of uncondittional branches"); @@ -267,13 +267,13 @@ public: char MachineBlockPlacement::ID = 0; char &llvm::MachineBlockPlacementID = MachineBlockPlacement::ID; -INITIALIZE_PASS_BEGIN(MachineBlockPlacement, "block-placement2", +INITIALIZE_PASS_BEGIN(MachineBlockPlacement, "block-placement", "Branch Probability Basic Block Placement", false, false) INITIALIZE_PASS_DEPENDENCY(MachineBranchProbabilityInfo) INITIALIZE_PASS_DEPENDENCY(MachineBlockFrequencyInfo) INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree) INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo) -INITIALIZE_PASS_END(MachineBlockPlacement, "block-placement2", +INITIALIZE_PASS_END(MachineBlockPlacement, "block-placement", "Branch Probability Basic Block Placement", false, false) #ifndef NDEBUG |