summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Support
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-09-20 07:16:54 +0000
committerChris Lattner <sabre@nondot.org>2009-09-20 07:16:54 +0000
commit78f908c877fb9e6a563842e752ec2c64ae2ac401 (patch)
treef9c98c009f0a06c18f64278553d8a7eb652b63d1 /llvm/lib/Support
parent22fc051bd72f459717b60c49a05acdb7f0af05f7 (diff)
downloadbcm5719-llvm-78f908c877fb9e6a563842e752ec2c64ae2ac401.tar.gz
bcm5719-llvm-78f908c877fb9e6a563842e752ec2c64ae2ac401.zip
tidy up
llvm-svn: 82384
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r--llvm/lib/Support/CommandLine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/CommandLine.cpp b/llvm/lib/Support/CommandLine.cpp
index 61b6cfe929e..43686c07cce 100644
--- a/llvm/lib/Support/CommandLine.cpp
+++ b/llvm/lib/Support/CommandLine.cpp
@@ -759,7 +759,7 @@ void cl::ParseCommandLineOptions(int argc, char **argv,
// Free all the strdup()ed strings.
for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
i != e; ++i)
- free (*i);
+ free(*i);
}
// If we had an error processing our arguments, don't let the program execute
OpenPOWER on IntegriCloud