From: Diego Novillo Date: Fri, 14 Mar 2014 22:07:18 +0000 (+0000) Subject: Re-format SampleProfile.cpp with clang-format. No functional changes. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=68c1cb444f441ab0f5e30bbdaa3ba9f9aa7b3786;p=oota-llvm.git Re-format SampleProfile.cpp with clang-format. No functional changes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203977 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/SampleProfile.cpp b/lib/Transforms/Scalar/SampleProfile.cpp index e8adc64eeee..f1d6ba0f228 100644 --- a/lib/Transforms/Scalar/SampleProfile.cpp +++ b/lib/Transforms/Scalar/SampleProfile.cpp @@ -94,7 +94,7 @@ template <> struct DenseMapInfo { DiscriminatorInfo::getTombstoneKey()); } static inline unsigned getHashValue(InstructionLocation Val) { - return DenseMapInfo >::getHashValue( + return DenseMapInfo>::getHashValue( std::pair(Val.LineOffset, Val.Discriminator)); } static inline bool isEqual(InstructionLocation LHS, InstructionLocation RHS) { @@ -110,7 +110,7 @@ typedef DenseMap BlockWeightMap; typedef DenseMap EquivalenceClassMap; typedef std::pair Edge; typedef DenseMap EdgeWeightMap; -typedef DenseMap > BlockEdgeMap; +typedef DenseMap> BlockEdgeMap; /// \brief Representation of the runtime profile for a function. ///