OSDN Git Service

Use .empty() instead of comparing .size() with 0.
authorDan Gohman <gohman@apple.com>
Tue, 27 Jan 2009 22:12:23 +0000 (22:12 +0000)
committerDan Gohman <gohman@apple.com>
Tue, 27 Jan 2009 22:12:23 +0000 (22:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63139 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/ScheduleDAGSDNodes.h

index 52cf4eb..8950433 100644 (file)
@@ -61,7 +61,7 @@ namespace llvm {
     SUnit *NewSUnit(SDNode *N) {
 #ifndef NDEBUG
       const SUnit *Addr = 0;
-      if (SUnits.size() > 0)
+      if (!SUnits.empty())
         Addr = &SUnits[0];
 #endif
       SUnits.push_back(SUnit(N, (unsigned)SUnits.size()));