aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis/ProfileInfo.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-08-26 15:56:38 +0000
committerDan Gohman <gohman@apple.com>2009-08-26 15:56:38 +0000
commit4bac4b9899ea4e56f4b5dd99887d4e460e0f13ad (patch)
tree1d9e01baca0727efe11dc6d0aadde9a3754fab95 /lib/Analysis/ProfileInfo.cpp
parent0ef68e8fbb25213794f88c6c42f2488341bc05c6 (diff)
downloadexternal_llvm-4bac4b9899ea4e56f4b5dd99887d4e460e0f13ad.tar.gz
external_llvm-4bac4b9899ea4e56f4b5dd99887d4e460e0f13ad.tar.bz2
external_llvm-4bac4b9899ea4e56f4b5dd99887d4e460e0f13ad.zip
Move ProfileInfo::Edge's operator<< out of line. Among other benefits,
this eliminates the ATTRIBUTE_USED, which wasn't being used in a manner acceptable to some GCC versions, according to the buildbots. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80103 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/ProfileInfo.cpp')
-rw-r--r--lib/Analysis/ProfileInfo.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/Analysis/ProfileInfo.cpp b/lib/Analysis/ProfileInfo.cpp
index fdbf03cc34..55c5cab751 100644
--- a/lib/Analysis/ProfileInfo.cpp
+++ b/lib/Analysis/ProfileInfo.cpp
@@ -17,6 +17,7 @@
#include "llvm/Pass.h"
#include "llvm/Support/CFG.h"
#include "llvm/Support/Compiler.h"
+#include "llvm/Support/raw_ostream.h"
#include <set>
using namespace llvm;
@@ -81,6 +82,13 @@ double ProfileInfo::getExecutionCount(const Function *F) {
return Count;
}
+raw_ostream& llvm::operator<<(raw_ostream &O, ProfileInfo::Edge E) {
+ O << "(";
+ O << (E.first ? E.first->getNameStr() : "0");
+ O << ",";
+ O << (E.second ? E.second->getNameStr() : "0");
+ return O << ")";
+}
//===----------------------------------------------------------------------===//
// NoProfile ProfileInfo implementation