add an emitnoop method

llvm-svn: 26563
This commit is contained in:
Chris Lattner 2006-03-05 23:50:42 +00:00
parent ea79d9fd73
commit b641a7cca6
1 changed files with 6 additions and 2 deletions

View File

@ -308,14 +308,18 @@ namespace llvm {
/// EmitNode - Generate machine code for an node and needed dependencies.
///
void EmitNode(NodeInfo *NI);
/// EmitNoop - Emit a noop instruction.
///
void EmitNoop();
/// EmitAll - Emit all nodes in schedule sorted order.
///
void EmitAll();
/// Schedule - Order nodes according to selected style.
///
virtual void Schedule() {};
virtual void Schedule() {}
/// printNI - Print node info.
///