diff options
author | Dan Gohman <gohman@apple.com> | 2009-08-26 15:56:38 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-08-26 15:56:38 +0000 |
commit | 4bac4b9899ea4e56f4b5dd99887d4e460e0f13ad (patch) | |
tree | 1d9e01baca0727efe11dc6d0aadde9a3754fab95 /include | |
parent | 0ef68e8fbb25213794f88c6c42f2488341bc05c6 (diff) | |
download | external_llvm-4bac4b9899ea4e56f4b5dd99887d4e460e0f13ad.zip external_llvm-4bac4b9899ea4e56f4b5dd99887d4e460e0f13ad.tar.gz external_llvm-4bac4b9899ea4e56f4b5dd99887d4e460e0f13ad.tar.bz2 |
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 'include')
-rw-r--r-- | include/llvm/Analysis/ProfileInfo.h | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/include/llvm/Analysis/ProfileInfo.h b/include/llvm/Analysis/ProfileInfo.h index 59ad907..16bfc13 100644 --- a/include/llvm/Analysis/ProfileInfo.h +++ b/include/llvm/Analysis/ProfileInfo.h @@ -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 |