mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-21 23:17:16 +00:00
Fix a bug that caused opt and other tools to silently ignore
invalid command-line options. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47523 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -127,7 +127,7 @@ static void GetOptionInfo(std::vector<Option*> &PositionalOpts,
|
||||
// Remember information about positional options.
|
||||
if (O->getFormattingFlag() == cl::Positional)
|
||||
PositionalOpts.push_back(O);
|
||||
else if (O->getMiscFlags() && cl::Sink) // Remember sink options
|
||||
else if (O->getMiscFlags() & cl::Sink) // Remember sink options
|
||||
SinkOpts.push_back(O);
|
||||
else if (O->getNumOccurrencesFlag() == cl::ConsumeAfter) {
|
||||
if (CAOpt)
|
||||
|
||||
Reference in New Issue
Block a user