diff options
Diffstat (limited to 'llvm/lib/CodeGen/ScheduleDAG.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/ScheduleDAG.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/ScheduleDAG.cpp b/llvm/lib/CodeGen/ScheduleDAG.cpp index cf9896b3fba..046d3379a64 100644 --- a/llvm/lib/CodeGen/ScheduleDAG.cpp +++ b/llvm/lib/CodeGen/ScheduleDAG.cpp @@ -188,7 +188,7 @@ void SUnit::dumpAll(const ScheduleDAG *G) const { else cerr << " val #"; cerr << I->Dep << " - SU(" << I->Dep->NodeNum << ")"; - if (I->isSpecial) + if (I->isArtificial) cerr << " *"; cerr << "\n"; } @@ -202,7 +202,7 @@ void SUnit::dumpAll(const ScheduleDAG *G) const { else cerr << " val #"; cerr << I->Dep << " - SU(" << I->Dep->NodeNum << ")"; - if (I->isSpecial) + if (I->isArtificial) cerr << " *"; cerr << "\n"; } |

