#include "llvm/CodeGen/MachineFunction.h"
#include "llvm/Target/TargetMachine.h"
#include "llvm/Support/InstVisitor.h"
+using namespace llvm;
namespace llvm {
-
struct SelectionDAGBuilder : public InstVisitor<SelectionDAGBuilder> {
// DAG - the current dag we are building.
SelectionDAG &DAG;
SelectionDAGNode *addSeqNode(SelectionDAGNode *N);
};
+} // end llvm namespace
/// addSeqNode - The same as addNode, but the node is also included in the
/// sequence nodes for this block. This method should be called for any
Root = SDB.CurRoot;
}
-} // End llvm namespace
#include "llvm/CodeGen/SelectionDAG.h"
#include "llvm/Type.h"
-
-namespace llvm {
+using namespace llvm;
SelectionDAG::~SelectionDAG() {
for (unsigned i = 0, e = AllNodes.size(); i != e; ++i)
std::cerr << "\n";
}
-
-} // End llvm namespace