diff options
author | Chris Lattner <sabre@nondot.org> | 2004-05-07 02:27:32 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-05-07 02:27:32 +0000 |
commit | 2944bcaaed94db2f3bb000f78ba75b4172b475cf (patch) | |
tree | b678f9797f5a4569ede187153f4afffc611eb23f /include/Support/CommandLine.h | |
parent | 4d8d49f1bb9cf92c0d7bf128e46e6a9be673e6d4 (diff) |
Add the enum corresponding to the source change I made earlier
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13395 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/Support/CommandLine.h')
-rw-r--r-- | include/Support/CommandLine.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/Support/CommandLine.h b/include/Support/CommandLine.h index d258b9d4e2..1a4a2adaab 100644 --- a/include/Support/CommandLine.h +++ b/include/Support/CommandLine.h @@ -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, }; |