diff options
author | Chris Lattner <sabre@nondot.org> | 2007-11-27 06:14:32 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-11-27 06:14:32 +0000 |
commit | 698b1cb28d667e5c4bb68348baba8a82d6a6f8ea (patch) | |
tree | c4a57541ab23bf023381d5b40f35395a359fc76e | |
parent | 28caf2717abdc7265ae0b6a4abb07cfd9dfb024b (diff) | |
download | bcm5719-llvm-698b1cb28d667e5c4bb68348baba8a82d6a6f8ea.tar.gz bcm5719-llvm-698b1cb28d667e5c4bb68348baba8a82d6a6f8ea.zip |
err, no really.
llvm-svn: 44352
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index a90679c0767..270c9a958f2 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -1915,7 +1915,7 @@ unsigned SelectionDAGLowering::Clusterify(CaseVector& Cases, SI.getSuccessorValue(i), SMBB)); } - sort(Cases.begin(), Cases.end(), CaseCmp()); + std::sort(Cases.begin(), Cases.end(), CaseCmp()); // Merge case into clusters if (Cases.size()>=2) |