From 2944bcaaed94db2f3bb000f78ba75b4172b475cf Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 7 May 2004 02:27:32 +0000 Subject: [PATCH] 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 --- include/Support/CommandLine.h | 5 +++-- include/llvm/Support/CommandLine.h | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) 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, }; -- 2.34.1