summaryrefslogtreecommitdiff
path: root/test/SemaObjC/format-strings-objc.m
AgeCommit message (Expand)Author
2016-12-15Fix printf specifier handling: invalid specifier should not be marked as "con...Mehdi Amini
2016-10-24[Sema] Formatting warnings should see through Objective-C message sendsAlex Lorenz
2016-03-29[Sema] Attempt to fix tests for utf-8 invalid format string specifiersBruno Cardoso Lopes
2016-03-29[Sema] Handle UTF-8 invalid format string specifiersBruno Cardoso Lopes
2016-03-15Move the fixit for -Wformat-security to a note.Bob Wilson
2015-07-02Parse 'technical term' format specifier.Ted Kremenek
2014-11-14Recommit r222044 with a test fix - it does not make sense to huntAnton Korobeynikov
2014-11-12Temporary revert r221818 until all the problemsAnton Korobeynikov
2014-11-12Update the tests to handle proper result type of (?:)Anton Korobeynikov
2014-02-25Sema: When merging objc string literals, give the result a constant array type.Benjamin Kramer
2013-10-15Special case '%C' handling in ObjC format strings to handle integer literals ...Ted Kremenek
2013-08-05Implement C++'s restrictions on the type of an expression passed to a varargRichard Smith
2013-04-10Handle "typeof" in Objective-C format string checking. This previously crashed.Ted Kremenek
2012-12-05Format strings: offer a cast to 'unichar' for %C in Objective-C contexts.Jordan Rose
2012-08-08Implicitly annotate __CFStringMakeConstantString with format_arg(1).Jordan Rose
2012-07-19For varargs, diagnose passing ObjC objects by value like other non-POD types.Jordan Rose
2012-07-19Capitalize "Objective-C" and "C++" in user-facing contexts.Jordan Rose
2012-07-19Don't crash checking a format string if one of the arguments is invalid.Jordan Rose
2012-06-04Teach format string checking about compile-time CFString constants.Jordan Rose
2012-05-04Inhibit ObjC format warning only in system headers (NSLocalizedString).Jean-Daniel Dupas
2012-04-06Added a new attribute, objc_root_class, which informs the compiler when a roo...Patrick Beard
2012-03-15Support '%p' format specifier with block pointers.Ted Kremenek
2012-02-21When calling a non variadic format function(vprintf, vscanf, NSLogv, …), wa...Jean-Daniel Dupas
2012-02-06Tweak format string checking to work with %@ and ObjC toll-free bridging. <r...Ted Kremenek
2012-02-04Revert r149721. chapuni tells me akyrtzi already fixed the testNico Weber
2012-02-03Try to get test passing on windows.Nico Weber
2012-02-03Add a triple to test/SemaObjC/format-strings-objc.m to make it pass in window...Argyrios Kyrtzidis
2012-01-31Let %S, %ls, %C match 16bit types in NSStrings.Nico Weber
2012-01-30Disable "non literal format string" for NSString that result from a macro exp...Jean-Daniel Dupas
2012-01-30Update on format attribute handling.Jean-Daniel Dupas
2012-01-25Add support for const pointer to literal-objc string as format attribute.Jean-Daniel Dupas
2012-01-25Fix NSLog format string checking for %@.Ted Kremenek
2012-01-20Tighten format string diagnostic and make it a bit clearer (and a bit closer ...Ted Kremenek
2012-01-17Fix a couples of issues in format strings checking.Jean-Daniel Dupas
2011-06-28Revert r133024, "[format strings] correctly suggest correct type for '%@'Daniel Dunbar
2011-06-14[format strings] correctly suggest correct type for '%@' specifiers. Fixes <...Ted Kremenek
2010-06-16Extend format string type-checking to include '%p'. Fixes remaining cases PR...Ted Kremenek
2010-02-27Fix crasher caused by setting a bit in a possibly empty bitvector whileTed Kremenek
2010-01-30Add test case for <rdar://problem/7068334> (which was fixed by r94864).Ted Kremenek
2010-01-29Switch Sema over to using the new implementation of format stringTed Kremenek
2009-12-15Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar
2009-12-14Change tests to use clang -cc1...Fariborz Jahanian
2009-03-24Rename clang to clang-cc.Daniel Dunbar
2008-09-26Add support for CFString in format attribute.Daniel Dunbar
2008-07-26move all objc sema tests into a new SemaObjC directory. Next step is toChris Lattner