summaryrefslogtreecommitdiff
path: root/lib/Target/SparcV9/InstrSched/SchedPriorities.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-11-02 22:07:51 +0000
committerChris Lattner <sabre@nondot.org>2002-11-02 22:07:51 +0000
commit5da2e6ac7016f61e3475cf6e982b2517a2294ca4 (patch)
treee278099a27486b3aadb9487faf96b77ae1614c20 /lib/Target/SparcV9/InstrSched/SchedPriorities.h
parent0d05e6d942e75a1187e8538adf3a05c09976cabf (diff)
downloadllvm-5da2e6ac7016f61e3475cf6e982b2517a2294ca4.tar.gz
llvm-5da2e6ac7016f61e3475cf6e982b2517a2294ca4.tar.bz2
llvm-5da2e6ac7016f61e3475cf6e982b2517a2294ca4.tar.xz
Move function to cpp file from header
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4510 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SparcV9/InstrSched/SchedPriorities.h')
-rw-r--r--lib/Target/SparcV9/InstrSched/SchedPriorities.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/Target/SparcV9/InstrSched/SchedPriorities.h b/lib/Target/SparcV9/InstrSched/SchedPriorities.h
index 7cfcb03839..2b9405db9a 100644
--- a/lib/Target/SparcV9/InstrSched/SchedPriorities.h
+++ b/lib/Target/SparcV9/InstrSched/SchedPriorities.h
@@ -18,7 +18,6 @@
#include "llvm/Target/MachineSchedInfo.h"
#include "Support/hash_set"
#include <list>
-#include <iosfwd>
class Function;
class MachineInstr;
@@ -202,9 +201,6 @@ inline void SchedPriorities::updateTime(cycles_t c) {
mcands.clear();
}
-inline std::ostream &operator<<(std::ostream &os, const NodeDelayPair* nd) {
- return os << "Delay for node " << nd->node->getNodeId()
- << " = " << (long)nd->delay << "\n";
-}
+std::ostream &operator<<(std::ostream &os, const NodeDelayPair* nd);
#endif