add an emitnoop method

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26563 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-03-05 23:50:42 +00:00
parent bbf1c72d51
commit 202bc85a95

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.
///