summaryrefslogtreecommitdiffstats
path: root/clang/lib/Analysis/PrintfFormatString.cpp
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-09-10 21:20:09 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-09-10 21:20:09 +0000
commit76bb5cabfa33371a8b3920fc4bc6b53c46478ea6 (patch)
tree4d169b2b158fdd1c77c6042a0a84d18b347040c5 /clang/lib/Analysis/PrintfFormatString.cpp
parent5a72a23a70bf2a673ee00e51478335e10cb3d0f8 (diff)
downloadbcm5719-llvm-76bb5cabfa33371a8b3920fc4bc6b53c46478ea6.tar.gz
bcm5719-llvm-76bb5cabfa33371a8b3920fc4bc6b53c46478ea6.zip
Remove redundant semicolons which are null statements.
llvm-svn: 163546
Diffstat (limited to 'clang/lib/Analysis/PrintfFormatString.cpp')
-rw-r--r--clang/lib/Analysis/PrintfFormatString.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Analysis/PrintfFormatString.cpp b/clang/lib/Analysis/PrintfFormatString.cpp
index 9a4f0ca6bba..b85c1c425b2 100644
--- a/clang/lib/Analysis/PrintfFormatString.cpp
+++ b/clang/lib/Analysis/PrintfFormatString.cpp
@@ -223,7 +223,7 @@ bool clang::analyze_format_string::ParsePrintfString(FormatStringHandler &H,
// Did a fail-stop error of any kind occur when parsing the specifier?
// If so, don't do any more processing.
if (FSR.shouldStop())
- return true;;
+ return true;
// Did we exhaust the string or encounter an error that
// we can recover from?
if (!FSR.hasValue())
OpenPOWER on IntegriCloud