From 68c1cb444f441ab0f5e30bbdaa3ba9f9aa7b3786 Mon Sep 17 00:00:00 2001 From: Diego Novillo Date: Fri, 14 Mar 2014 22:07:18 +0000 Subject: [PATCH] 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 --- lib/Transforms/Scalar/SampleProfile.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Transforms/Scalar/SampleProfile.cpp b/lib/Transforms/Scalar/SampleProfile.cpp index e8adc64eeeed..f1d6ba0f2280 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. ///