projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c2d1b69
)
Suppress use of uninitialized variable warning.
author
Duncan Sands
<baldrick@free.fr>
Sat, 9 Jan 2010 08:30:33 +0000
(08:30 +0000)
committer
Duncan Sands
<baldrick@free.fr>
Sat, 9 Jan 2010 08:30:33 +0000
(08:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93046
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Support/CommandLine.cpp
patch
|
blob
|
history
diff --git
a/lib/Support/CommandLine.cpp
b/lib/Support/CommandLine.cpp
index 75b02d331714ad2e00f948272546caedf69189b4..fa692be8cc2c08686972a6d3fe9cb24923682085 100644
(file)
--- a/
lib/Support/CommandLine.cpp
+++ b/
lib/Support/CommandLine.cpp
@@
-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);