[NFC][Support] Add unit of measure to comment for PeakMemory
authorHubert Tong <hubert.reinterpretcast@gmail.com>
Thu, 25 Jun 2020 19:41:33 +0000 (15:41 -0400)
committerHubert Tong <hubert.reinterpretcast@gmail.com>
Thu, 25 Jun 2020 19:41:33 +0000 (15:41 -0400)
llvm/include/llvm/Support/Program.h

index ce0b6db..dbda064 100644 (file)
@@ -57,7 +57,7 @@ namespace sys {
   struct ProcessStatistics {
     std::chrono::microseconds TotalTime;
     std::chrono::microseconds UserTime;
-    uint64_t PeakMemory = 0;
+    uint64_t PeakMemory = 0; ///< Maximum resident set size in KiB.
   };
 
   /// Find the first executable file \p Name in \p Paths.