mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-24 08:24:33 +00:00
Move function to cpp file from header
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4510 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -17,6 +17,12 @@
|
||||
#include "Support/PostOrderIterator.h"
|
||||
using std::cerr;
|
||||
|
||||
std::ostream &operator<<(std::ostream &os, const NodeDelayPair* nd) {
|
||||
return os << "Delay for node " << nd->node->getNodeId()
|
||||
<< " = " << (long)nd->delay << "\n";
|
||||
}
|
||||
|
||||
|
||||
SchedPriorities::SchedPriorities(const Function *, const SchedGraph *G,
|
||||
FunctionLiveVarInfo &LVI)
|
||||
: curTime(0), graph(G), methodLiveVarInfo(LVI),
|
||||
|
Reference in New Issue
Block a user