diff options
| author | Dan Gohman <gohman@apple.com> | 2008-11-21 02:18:56 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2008-11-21 02:18:56 +0000 |
| commit | 67b35bd4d1344075ab06520e9d741d39dc59cce0 (patch) | |
| tree | ad3e1d4ac00cc63541ed83f3000855602aa89023 /llvm/lib/CodeGen/ScheduleDAG.cpp | |
| parent | d10202bfb14cf9eff68f845fe40b10c05a541892 (diff) | |
| download | bcm5719-llvm-67b35bd4d1344075ab06520e9d741d39dc59cce0.tar.gz bcm5719-llvm-67b35bd4d1344075ab06520e9d741d39dc59cce0.zip | |
Rename SDep's isSpecial to isArtificial, to make this field a little
less mysterious.
llvm-svn: 59782
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"; } |

