diff options
author | Hans Wennborg <hans@hanshq.net> | 2011-12-07 10:33:11 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2011-12-07 10:33:11 +0000 |
commit | 772e9270f666afef722292b6aaf3791feb8fcc1f (patch) | |
tree | e457b5a164801eb7e81c3a5d014b11f463126556 /clang/lib/Analysis/FormatString.cpp | |
parent | 1d578e8835282f5aac1d2fef3801e38c7a8fc870 (diff) | |
download | bcm5719-llvm-772e9270f666afef722292b6aaf3791feb8fcc1f.tar.gz bcm5719-llvm-772e9270f666afef722292b6aaf3791feb8fcc1f.zip |
Make printf warnings refer to intmax_t et al. by name
in addition to underlying type.
For example, the warning for printf("%zu", 42.0);
changes from "conversion specifies type 'unsigned long'" to "conversion
specifies type 'size_t' (aka 'unsigned long')"
(This is a second attempt after r145697, which got reverted.)
llvm-svn: 146032
Diffstat (limited to 'clang/lib/Analysis/FormatString.cpp')
-rw-r--r-- | clang/lib/Analysis/FormatString.cpp | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/clang/lib/Analysis/FormatString.cpp b/clang/lib/Analysis/FormatString.cpp index 6498ded4e37..0853164df75 100644 --- a/clang/lib/Analysis/FormatString.cpp +++ b/clang/lib/Analysis/FormatString.cpp @@ -228,6 +228,7 @@ bool ArgTypeResult::matchesType(ASTContext &C, QualType argTy) const { return false; } + case TypedefTy: case SpecificTy: { argTy = C.getCanonicalType(argTy).getUnqualifiedType(); if (T == argTy) @@ -331,6 +332,7 @@ QualType ArgTypeResult::getRepresentativeType(ASTContext &C) const { case AnyCharTy: return C.CharTy; case SpecificTy: + case TypedefTy: return T; case CStrTy: return C.getPointerType(C.CharTy); @@ -351,6 +353,13 @@ QualType ArgTypeResult::getRepresentativeType(ASTContext &C) const { return QualType(); } +std::string ArgTypeResult::getRepresentativeTypeName(ASTContext &C) const { + if (K != TypedefTy) + return std::string("'") + getRepresentativeType(C).getAsString() + "'"; + return std::string("'") + Name + "' (aka '" + T.getAsString() + "')"; +} + + //===----------------------------------------------------------------------===// // Methods on OptionalAmount. //===----------------------------------------------------------------------===// @@ -485,5 +494,3 @@ bool FormatSpecifier::hasValidLengthModifier() const { } return false; } - - |