Move ParseFormatString() and FormatStringHandler back into the analyze_printf namespace.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@95324 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/include/clang/Analysis/Analyses/PrintfFormatString.h b/include/clang/Analysis/Analyses/PrintfFormatString.h
index 46f23ce..a5c0b23 100644
--- a/include/clang/Analysis/Analyses/PrintfFormatString.h
+++ b/include/clang/Analysis/Analyses/PrintfFormatString.h
@@ -234,8 +234,6 @@
bool hasLeadingZeros() const { return (bool) HasLeadingZeroes; }
};
-} // end printf namespace
-
class FormatStringHandler {
public:
FormatStringHandler() {}
@@ -261,6 +259,6 @@
bool ParseFormatString(FormatStringHandler &H,
const char *beg, const char *end);
-
+} // end printf namespace
} // end clang namespace
#endif
diff --git a/lib/Analysis/PrintfFormatString.cpp b/lib/Analysis/PrintfFormatString.cpp
index 35c620a..6e603fa 100644
--- a/lib/Analysis/PrintfFormatString.cpp
+++ b/lib/Analysis/PrintfFormatString.cpp
@@ -18,6 +18,7 @@
using clang::analyze_printf::FormatSpecifier;
using clang::analyze_printf::OptionalAmount;
using clang::analyze_printf::ArgTypeResult;
+using clang::analyze_printf::FormatStringHandler;
using namespace clang;
namespace {
@@ -87,7 +88,8 @@
}
static FormatSpecifierResult ParseFormatSpecifier(FormatStringHandler &H,
- const char *&Beg, const char *E) {
+ const char *&Beg,
+ const char *E) {
using namespace clang::analyze_printf;
@@ -241,7 +243,7 @@
return FormatSpecifierResult(Start, FS);
}
-bool clang::ParseFormatString(FormatStringHandler &H,
+bool clang::analyze_printf::ParseFormatString(FormatStringHandler &H,
const char *I, const char *E) {
// Keep looking for a format specifier until we have exhausted the string.
while (I != E) {
diff --git a/lib/Sema/SemaChecking.cpp b/lib/Sema/SemaChecking.cpp
index cb0e5fb..cba3c60 100644
--- a/lib/Sema/SemaChecking.cpp
+++ b/lib/Sema/SemaChecking.cpp
@@ -1033,7 +1033,7 @@
}
namespace {
-class CheckPrintfHandler : public FormatStringHandler {
+class CheckPrintfHandler : public analyze_printf::FormatStringHandler {
Sema &S;
const StringLiteral *FExpr;
const Expr *OrigFormatExpr;
@@ -1061,9 +1061,10 @@
void HandleIncompleteFormatSpecifier(const char *startSpecifier,
unsigned specifierLen);
- void HandleInvalidConversionSpecifier(const analyze_printf::FormatSpecifier &FS,
- const char *startSpecifier,
- unsigned specifierLen);
+ void
+ HandleInvalidConversionSpecifier(const analyze_printf::FormatSpecifier &FS,
+ const char *startSpecifier,
+ unsigned specifierLen);
void HandleNullChar(const char *nullCharacter);
@@ -1292,9 +1293,9 @@
S.Diag(getLocationOfByte(CS.getStart()),
diag::warn_printf_conversion_argument_type_mismatch)
- << *T << Ex->getType()
- << getFormatSpecifierRange(startSpecifier, specifierLen)
- << Ex->getSourceRange();
+ << *T << Ex->getType();
+// << getFormatSpecifierRange(startSpecifier, specifierLen)
+// << Ex->getSourceRange();
}
return true;
}
@@ -1341,7 +1342,7 @@
isa<ObjCStringLiteral>(OrigFormatExpr), Str,
HasVAListArg, TheCall, format_idx);
- if (!ParseFormatString(H, Str, Str + StrLen))
+ if (!analyze_printf::ParseFormatString(H, Str, Str + StrLen))
H.DoneProcessing();
}