mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-19 19:31:50 +00:00
Suppress use of uninitialized variable warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93046 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c2d1b6949c
commit
1fa8b00b30
@ -354,7 +354,7 @@ static Option *HandlePrefixedOrGroupedOption(StringRef &Arg, StringRef &Value,
|
||||
// we don't need to pass argc/argv in.
|
||||
assert(PGOpt->getValueExpectedFlag() != cl::ValueRequired &&
|
||||
"Option can not be cl::Grouping AND cl::ValueRequired!");
|
||||
int Dummy;
|
||||
int Dummy = 0;
|
||||
ErrorParsing |= ProvideOption(PGOpt, OneArgName,
|
||||
StringRef(), 0, 0, Dummy);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user