diff options
| -rw-r--r-- | llvm/include/Support/CommandLine.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/include/Support/CommandLine.h b/llvm/include/Support/CommandLine.h index d258b9d..1a4a2ad 100644 --- a/llvm/include/Support/CommandLine.h +++ b/llvm/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, }; |
