diff options
author | Dan Gohman <gohman@apple.com> | 2008-11-18 02:50:01 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-11-18 02:50:01 +0000 |
commit | fe1748da07ad6493888d2a85639e9200d12014c9 (patch) | |
tree | 692fac6c06824e85b64d7f37c7bbd44a11de5e88 | |
parent | 22d07b14bc60407b993681c4fde4ef294908f8b4 (diff) | |
download | bcm5719-llvm-fe1748da07ad6493888d2a85639e9200d12014c9.tar.gz bcm5719-llvm-fe1748da07ad6493888d2a85639e9200d12014c9.zip |
Fix a typo in a comment.
llvm-svn: 59489
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp index e7e14516eb7..40191d2c749 100644 --- a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp @@ -54,7 +54,7 @@ private: /// PendingQueue - This contains all of the instructions whose operands have /// been issued, but their results are not ready yet (due to the latency of - /// the operation). Once the operands becomes available, the instruction is + /// the operation). Once the operands become available, the instruction is /// added to the AvailableQueue. std::vector<SUnit*> PendingQueue; |