diff options
Diffstat (limited to 'lib/CodeGen/SelectionDAG/DAGCombiner.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 4e835b8..5a1bf93 100644 --- a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -801,7 +801,7 @@ SDOperand DAGCombiner::visitTokenFactor(SDNode *N) { // If we've change things around then replace token factor. if (Changed) { - if (Ops.size() == 0) { + if (Ops.empty()) { // The entry token is the only possible outcome. Result = DAG.getEntryNode(); } else { |