diff --git a/include/Support/CommandLine.h b/include/Support/CommandLine.h index d258b9d4e29..1a4a2adaab0 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, }; diff --git a/include/llvm/Support/CommandLine.h b/include/llvm/Support/CommandLine.h index d258b9d4e29..1a4a2adaab0 100644 --- a/include/llvm/Support/CommandLine.h +++ b/include/llvm/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, };