[llvm-commits] [llvm] r148809 - /llvm/trunk/include/llvm/Support/CommandLine.h

David Blaikie dblaikie at gmail.com
Tue Jan 24 08:18:30 PST 2012


Author: dblaikie
Date: Tue Jan 24 10:18:30 2012
New Revision: 148809

URL: http://llvm.org/viewvc/llvm-project?rev=148809&view=rev
Log:
Reword comment based on feedback by Duncan Sands.

Modified:
    llvm/trunk/include/llvm/Support/CommandLine.h

Modified: llvm/trunk/include/llvm/Support/CommandLine.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/CommandLine.h?rev=148809&r1=148808&r2=148809&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/CommandLine.h (original)
+++ llvm/trunk/include/llvm/Support/CommandLine.h Tue Jan 24 10:18:30 2012
@@ -164,7 +164,7 @@
 
   int NumOccurrences;     // The number of times specified
   // Occurrences, HiddenFlag, and Formatting are all enum types but to avoid
-  // with signed enums in bitfields in MSVC we'll store them as unsigned
+  // problems with signed enums in bitfields.
   unsigned Occurrences : 3; // enum NumOccurrencesFlag
   // not using the enum type for 'Value' because zero is an implementation
   // detail representing the non-value





More information about the llvm-commits mailing list