From: Evan Cheng Date: Wed, 11 Feb 2009 23:42:39 +0000 (+0000) Subject: Apparently some MachineBasicBlock's don't have corresponding llvm basic blocks. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f412f7c417eb4836ce875b0d214ee91026eba894;p=oota-llvm.git Apparently some MachineBasicBlock's don't have corresponding llvm basic blocks. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64340 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/ScheduleDAGPrinter.cpp b/lib/CodeGen/ScheduleDAGPrinter.cpp index e2ae5a03c13..594c24d11d1 100644 --- a/lib/CodeGen/ScheduleDAGPrinter.cpp +++ b/lib/CodeGen/ScheduleDAGPrinter.cpp @@ -83,9 +83,13 @@ std::string DOTGraphTraits::getNodeLabel(const SUnit *SU, void ScheduleDAG::viewGraph() { // This code is only for debugging! #ifndef NDEBUG - ViewGraph(this, "dag." + MF.getFunction()->getName(), - "Scheduling-Units Graph for " + MF.getFunction()->getName() + ':' + - BB->getBasicBlock()->getName()); + if (BB->getBasicBlock()) + ViewGraph(this, "dag." + MF.getFunction()->getName(), + "Scheduling-Units Graph for " + MF.getFunction()->getName() + ':' + + BB->getBasicBlock()->getName()); + else + ViewGraph(this, "dag." + MF.getFunction()->getName(), + "Scheduling-Units Graph for " + MF.getFunction()->getName()); #else cerr << "ScheduleDAG::viewGraph is only available in debug builds on " << "systems with Graphviz or gv!\n";