Move ProfileInfo::Edge's operator<< out of line. Among other benefits,
authorDan Gohman <gohman@apple.com>
Wed, 26 Aug 2009 15:56:38 +0000 (15:56 +0000)
committerDan Gohman <gohman@apple.com>
Wed, 26 Aug 2009 15:56:38 +0000 (15:56 +0000)
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

include/llvm/Analysis/ProfileInfo.h
lib/Analysis/ProfileInfo.cpp

index 59ad9077a0a7a95e90b4926dbf35e2893a3937e6..16bfc1351c78f245afb119761082184a42b8c446 100644 (file)
@@ -22,8 +22,6 @@
 #define LLVM_ANALYSIS_PROFILEINFO_H
 
 #include "llvm/BasicBlock.h"
-#include "llvm/Support/raw_ostream.h"
-#include "llvm/Support/Compiler.h"
 #include <cassert>
 #include <string>
 #include <map>
@@ -31,6 +29,7 @@
 namespace llvm {
   class Function;
   class Pass;
+  class raw_ostream;
 
   /// ProfileInfo Class - This class holds and maintains profiling
   /// information for some unit of code.
@@ -106,16 +105,7 @@ namespace llvm {
   /// it available to the optimizers.
   Pass *createProfileLoaderPass(const std::string &Filename);
 
-  static raw_ostream& operator<<(raw_ostream &O,
-                                 ProfileInfo::Edge E) ATTRIBUTE_USED;
-  static raw_ostream& 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<<")";
-  }
+  raw_ostream& operator<<(raw_ostream &O, ProfileInfo::Edge E);
 
 } // End llvm namespace
 
index fdbf03cc34d0068e0a14f02e1a68e06da7a332c0..55c5cab7510b8e1853f36ae630813a05de0e7947 100644 (file)
@@ -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