Add the enum corresponding to the source change I made earlier
authorChris Lattner <sabre@nondot.org>
Fri, 7 May 2004 02:27:32 +0000 (02:27 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 7 May 2004 02:27:32 +0000 (02:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13395 91177308-0d34-0410-b5e6-96231b3b80d8

include/Support/CommandLine.h
include/llvm/Support/CommandLine.h

index d258b9d4e2947037c422e899caf8a91abc956174..1a4a2adaab0b7150469215cf4eab50f43d68416d 100644 (file)
@@ -107,8 +107,9 @@ enum FormattingFlags {
 };
 
 enum MiscFlags {                // Miscellaneous flags to adjust argument
-  CommaSeparated   = 0x200,     // Should this cl::list split between commas?
-  MiscMask         = 0x200,
+  CommaSeparated     = 0x200,   // Should this cl::list split between commas?
+  PositionalEatsArgs = 0x400,   // Should this positional cl::list eat -args?
+  MiscMask           = 0x600,
 };
 
 
index d258b9d4e2947037c422e899caf8a91abc956174..1a4a2adaab0b7150469215cf4eab50f43d68416d 100644 (file)
@@ -107,8 +107,9 @@ enum FormattingFlags {
 };
 
 enum MiscFlags {                // Miscellaneous flags to adjust argument
-  CommaSeparated   = 0x200,     // Should this cl::list split between commas?
-  MiscMask         = 0x200,
+  CommaSeparated     = 0x200,   // Should this cl::list split between commas?
+  PositionalEatsArgs = 0x400,   // Should this positional cl::list eat -args?
+  MiscMask           = 0x600,
 };