diff options
author | Dehao Chen <dehao@google.com> | 2017-01-19 23:20:31 +0000 |
---|---|---|
committer | Dehao Chen <dehao@google.com> | 2017-01-19 23:20:31 +0000 |
commit | 94f369fc7fb375c500968f052c8bf8cf9d6a47d3 (patch) | |
tree | 3780556a751468f06f8dae4959f4bec704653036 /llvm/lib/Transforms/IPO/SampleProfile.cpp | |
parent | 58ffcfbffac0e8f9400b64f2233fce75742e9daf (diff) | |
download | bcm5719-llvm-94f369fc7fb375c500968f052c8bf8cf9d6a47d3.tar.gz bcm5719-llvm-94f369fc7fb375c500968f052c8bf8cf9d6a47d3.zip |
clang-format SampleProfile.cpp (NFC)
llvm-svn: 292533
Diffstat (limited to 'llvm/lib/Transforms/IPO/SampleProfile.cpp')
-rw-r--r-- | llvm/lib/Transforms/IPO/SampleProfile.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/llvm/lib/Transforms/IPO/SampleProfile.cpp b/llvm/lib/Transforms/IPO/SampleProfile.cpp index 6a43f8dbac4..7eaf843b40a 100644 --- a/llvm/lib/Transforms/IPO/SampleProfile.cpp +++ b/llvm/lib/Transforms/IPO/SampleProfile.cpp @@ -451,8 +451,7 @@ void SampleProfileLoader::printBlockWeight(raw_ostream &OS, /// \param Inst Instruction to query. /// /// \returns the weight of \p Inst. -ErrorOr<uint64_t> -SampleProfileLoader::getInstWeight(const Instruction &Inst) { +ErrorOr<uint64_t> SampleProfileLoader::getInstWeight(const Instruction &Inst) { const DebugLoc &DLoc = Inst.getDebugLoc(); if (!DLoc) return std::error_code(); @@ -491,8 +490,8 @@ SampleProfileLoader::getInstWeight(const Instruction &Inst) { LLVMContext &Ctx = F->getContext(); emitOptimizationRemark( Ctx, DEBUG_TYPE, *F, DLoc, - Twine("Applied ") + Twine(*R) + " samples from profile (offset: " + - Twine(LineOffset) + + Twine("Applied ") + Twine(*R) + + " samples from profile (offset: " + Twine(LineOffset) + ((Discriminator) ? Twine(".") + Twine(Discriminator) : "") + ")"); } DEBUG(dbgs() << " " << Lineno << "." << DIL->getDiscriminator() << ":" @@ -511,8 +510,7 @@ SampleProfileLoader::getInstWeight(const Instruction &Inst) { /// \param BB The basic block to query. /// /// \returns the weight for \p BB. -ErrorOr<uint64_t> -SampleProfileLoader::getBlockWeight(const BasicBlock *BB) { +ErrorOr<uint64_t> SampleProfileLoader::getBlockWeight(const BasicBlock *BB) { uint64_t Max = 0; bool HasWeight = false; for (auto &I : BB->getInstList()) { |