diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2008-02-20 12:38:07 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2008-02-20 12:38:07 +0000 |
commit | 6288e92e49c1269c4ade7fc52ba5be96408a2899 (patch) | |
tree | 94c96f66abfcf17623cd455bc3d205b8903e9ce4 /include/llvm/Support/CommandLine.h | |
parent | 21c1eebdad90bdfa99571093ff9a4e42fb6f8c89 (diff) | |
download | external_llvm-6288e92e49c1269c4ade7fc52ba5be96408a2899.zip external_llvm-6288e92e49c1269c4ade7fc52ba5be96408a2899.tar.gz external_llvm-6288e92e49c1269c4ade7fc52ba5be96408a2899.tar.bz2 |
Add 'sink' cmdline option. Patch by Mikhail Glushenkov!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47377 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/CommandLine.h')
-rw-r--r-- | include/llvm/Support/CommandLine.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Support/CommandLine.h b/include/llvm/Support/CommandLine.h index 8c269f0..1392e33 100644 --- a/include/llvm/Support/CommandLine.h +++ b/include/llvm/Support/CommandLine.h @@ -123,7 +123,8 @@ enum FormattingFlags { enum MiscFlags { // Miscellaneous flags to adjust argument CommaSeparated = 0x200, // Should this cl::list split between commas? PositionalEatsArgs = 0x400, // Should this positional cl::list eat -args? - MiscMask = 0x600 // Union of the above flags. + Sink = 0x800, // Should this cl::list eat all unknown options? + MiscMask = 0xE00 // Union of the above flags. }; |