aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/Support/CommandLine.h5
-rw-r--r--include/llvm/Support/CommandLine.h5
2 files changed, 6 insertions, 4 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,
};
diff --git a/include/llvm/Support/CommandLine.h b/include/llvm/Support/CommandLine.h
index d258b9d4e2..1a4a2adaab 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,
};