diff options
-rw-r--r-- | lib/Analysis/PrintfFormatString.cpp | 8 | ||||
-rw-r--r-- | test/Sema/format-strings-fixit.c | 14 |
2 files changed, 19 insertions, 3 deletions
diff --git a/lib/Analysis/PrintfFormatString.cpp b/lib/Analysis/PrintfFormatString.cpp index 03aff386c2..99dc22901c 100644 --- a/lib/Analysis/PrintfFormatString.cpp +++ b/lib/Analysis/PrintfFormatString.cpp @@ -686,6 +686,10 @@ bool FormatSpecifier::fixType(QualType QT) { if (QT->isPointerType() && (QT->getPointeeType()->isAnyCharacterType())) { CS.setKind(ConversionSpecifier::CStrArg); + // Disable irrelevant flags + HasAlternativeForm = 0; + HasLeadingZeroes = 0; + // Set the long length modifier for wide characters if (QT->getPointeeType()->isWideCharType()) LM.setKind(LengthModifier::AsWideChar); @@ -699,10 +703,14 @@ bool FormatSpecifier::fixType(QualType QT) { // Everything else should be a base type const BuiltinType *BT = QT->getAs<BuiltinType>(); + // Set length modifier switch (BT->getKind()) { default: + // The rest of the conversions are either optional or for non-builtin types + LM.setKind(LengthModifier::None); break; + case BuiltinType::WChar: case BuiltinType::Long: case BuiltinType::ULong: diff --git a/test/Sema/format-strings-fixit.c b/test/Sema/format-strings-fixit.c index ba38973049..9a1fef0401 100644 --- a/test/Sema/format-strings-fixit.c +++ b/test/Sema/format-strings-fixit.c @@ -10,11 +10,19 @@ int printf(char const *, ...); void test() { - printf("%0s", (int) 123); - printf("abc%f", "testing testing 123"); + // Basic types + printf("%s", (int) 123); + printf("abc%0f", "testing testing 123"); printf("%u", (long) -12); + + // Larger types printf("%+.2d", (unsigned long long) 123456); printf("%1d", (long double) 1.23); - printf("%Ld", (long double) -4.56); + + // Flag handling + printf("%0+s", (unsigned) 31337); // flags should stay + printf("%0f", "test"); // flag should be removed + + // Positional arguments printf("%1$f:%2$.*3$f:%4$.*3$f\n", 1, 2, 3, 4); } |