diff options
author | Andrew Trick <atrick@apple.com> | 2012-03-07 23:00:49 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2012-03-07 23:00:49 +0000 |
commit | 52226d409be06c7ed48aecfca6f82fdea45417af (patch) | |
tree | 33dd1dd62c7486d8f6a8f2171ad58838b3ccaa7b /llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp | |
parent | 22842f89e43e70ab73d1bdb5297db29aa9403a2b (diff) | |
download | llvm-52226d409be06c7ed48aecfca6f82fdea45417af.zip llvm-52226d409be06c7ed48aecfca6f82fdea45417af.tar.gz llvm-52226d409be06c7ed48aecfca6f82fdea45417af.tar.bz2 |
misched preparation: rename core scheduler methods for consistency.
We had half the API with one convention, half with another. Now was a
good time to clean it up.
llvm-svn: 152255
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp b/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp index 1a27f3f..ff0136e 100644 --- a/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp @@ -470,7 +470,7 @@ signed ResourcePriorityQueue::SUSchedulingCost(SUnit *SU) { /// Main resource tracking point. -void ResourcePriorityQueue::ScheduledNode(SUnit *SU) { +void ResourcePriorityQueue::scheduledNode(SUnit *SU) { // Use NULL entry as an event marker to reset // the DFA state. if (!SU) { |