mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Print debug output when any edge becomes executable, including
the first visited edge. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51612 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3b75d20c1a
commit
b22d6ac348
@ -96,10 +96,10 @@ void SparseSolver::markEdgeExecutable(BasicBlock *Source, BasicBlock *Dest) {
|
||||
if (!KnownFeasibleEdges.insert(Edge(Source, Dest)).second)
|
||||
return; // This edge is already known to be executable!
|
||||
|
||||
DOUT << "Marking Edge Executable: " << Source->getNameStart()
|
||||
<< " -> " << Dest->getNameStart() << "\n";
|
||||
|
||||
if (BBExecutable.count(Dest)) {
|
||||
DOUT << "Marking Edge Executable: " << Source->getNameStart()
|
||||
<< " -> " << Dest->getNameStart() << "\n";
|
||||
|
||||
// The destination is already executable, but we just made an edge
|
||||
// feasible that wasn't before. Revisit the PHI nodes in the block
|
||||
// because they have potentially new operands.
|
||||
|
Loading…
Reference in New Issue
Block a user