mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-06 15:21:37 +00:00
Fix lli with no arguments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3226 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8fd217cb29
commit
b490c20b38
@ -375,7 +375,7 @@ void cl::ParseCommandLineOptions(int &argc, char **argv,
|
|||||||
// positional option and keep the rest for the consume after. The above
|
// positional option and keep the rest for the consume after. The above
|
||||||
// loop would have assigned no values to positional options in this case.
|
// loop would have assigned no values to positional options in this case.
|
||||||
//
|
//
|
||||||
if (PositionalOpts.size() == 2 && ValNo == 0)
|
if (PositionalOpts.size() == 2 && ValNo == 0 && !PositionalVals.empty())
|
||||||
ErrorParsing |= ProvidePositionalOption(PositionalOpts[1],
|
ErrorParsing |= ProvidePositionalOption(PositionalOpts[1],
|
||||||
PositionalVals[ValNo++]);
|
PositionalVals[ValNo++]);
|
||||||
|
|
||||||
|
@ -375,7 +375,7 @@ void cl::ParseCommandLineOptions(int &argc, char **argv,
|
|||||||
// positional option and keep the rest for the consume after. The above
|
// positional option and keep the rest for the consume after. The above
|
||||||
// loop would have assigned no values to positional options in this case.
|
// loop would have assigned no values to positional options in this case.
|
||||||
//
|
//
|
||||||
if (PositionalOpts.size() == 2 && ValNo == 0)
|
if (PositionalOpts.size() == 2 && ValNo == 0 && !PositionalVals.empty())
|
||||||
ErrorParsing |= ProvidePositionalOption(PositionalOpts[1],
|
ErrorParsing |= ProvidePositionalOption(PositionalOpts[1],
|
||||||
PositionalVals[ValNo++]);
|
PositionalVals[ValNo++]);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user