summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Support/CommandLine.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-03-24 19:38:02 +0000
committerDan Gohman <gohman@apple.com>2010-03-24 19:38:02 +0000
commitb452d4e9e4b12892f91350974d2b6a9edd8e7c64 (patch)
treebde08997aac662f949c66eb5f50f72dc19dce040 /llvm/lib/Support/CommandLine.cpp
parent4634b7d4f6cb8557da5f08bf41b68be4b6bdab02 (diff)
downloadbcm5719-llvm-b452d4e9e4b12892f91350974d2b6a9edd8e7c64.tar.gz
bcm5719-llvm-b452d4e9e4b12892f91350974d2b6a9edd8e7c64.zip
Fix minor style issues.
llvm-svn: 99414
Diffstat (limited to 'llvm/lib/Support/CommandLine.cpp')
-rw-r--r--llvm/lib/Support/CommandLine.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Support/CommandLine.cpp b/llvm/lib/Support/CommandLine.cpp
index 2ab4103de2e..d31f34ed661 100644
--- a/llvm/lib/Support/CommandLine.cpp
+++ b/llvm/lib/Support/CommandLine.cpp
@@ -676,8 +676,8 @@ void cl::ParseCommandLineOptions(int argc, char **argv,
<< " positional arguments: See: " << argv[0] << " -help\n";
ErrorParsing = true;
- } else if (!HasUnlimitedPositionals
- && PositionalVals.size() > PositionalOpts.size()) {
+ } else if (!HasUnlimitedPositionals &&
+ PositionalVals.size() > PositionalOpts.size()) {
errs() << ProgramName
<< ": Too many positional arguments specified!\n"
<< "Can specify at most " << PositionalOpts.size()
OpenPOWER on IntegriCloud