Age | Commit message (Expand) | Author |
2012-08-07 | Rename analyze_format_string::ArgTypeResult to ArgType | Hans Wennborg |
2012-07-31 | -Wformat: better handling of qualifiers on pointer arguments | Hans Wennborg |
2012-07-30 | Make -Wformat check the argument type for %n. | Hans Wennborg |
2012-07-27 | Make -Wformat walk the typedef chain when looking for size_t, etc. | Hans Wennborg |
2012-07-27 | clang/lib: [CMake] Update tblgen'd dependencies. | NAKAMURA Takumi |
2012-07-27 | clang/lib: [CMake] Reformat, alphabetize lists. | NAKAMURA Takumi |
2012-07-27 | Final piece of core issue 1330: delay computing the exception specification of | Richard Smith |
2012-07-26 | [analyzer] Don't crash on implicit statements inside initializers. | Jordan Rose |
2012-07-26 | [analyzer] Variables with destructors are live until the destructor is run. | Jordan Rose |
2012-07-24 | When a && or || appears as the condition of a ?:, perform appropriate | Richard Smith |
2012-07-23 | Fix a typo (the the => the) | Sylvestre Ledru |
2012-07-20 | Add a reverse iterator to DeclStmt, and use it when building a CFG. | Jordan Rose |
2012-07-19 | Simplify UninitializedValues.cpp by removing logic to handle the previous (im... | Ted Kremenek |
2012-07-18 | Teach CFG construction about destructors resulting from references to array t... | Ted Kremenek |
2012-07-17 | Uninitialized variables: two little changes: | Richard Smith |
2012-07-17 | -Wuninitialized: Split the classification of DeclRefExprs as initialization or | Richard Smith |
2012-07-14 | Refine CFG so that '&&' and '||' don't lead to extra confluence points when u... | Ted Kremenek |
2012-07-14 | Hoist CFG builder logic for '&&' and '||' into helper method. No funcationli... | Ted Kremenek |
2012-07-14 | Remove unused method declaration. | Ted Kremenek |
2012-07-14 | Sort prototypes. No functionality change. | Ted Kremenek |
2012-07-13 | PR13360: When deciding the earliest point which inevitably leads to an | Richard Smith |
2012-07-10 | Thread safety analysis: impove handling of trylock expressions. | DeLesley Hutchins |
2012-07-06 | Implement AST classes for comments, a real parser for Doxygen comments and a | Dmitri Gribenko |
2012-07-05 | Thread-safety analysis: eliminate false positives in case where the definition | DeLesley Hutchins |
2012-07-04 | Drop the ASTContext.h include from DeclFriend.h and DeclTemplate.h. | Benjamin Kramer |
2012-07-04 | Drop the ASTContext.h include from Stmt.h and fix up transitive users. | Benjamin Kramer |
2012-07-03 | Thread safety analysis: improve handling of smart pointers. | DeLesley Hutchins |
2012-07-03 | Thread Safety Analysis: handle expressions involving temporaries, | DeLesley Hutchins |
2012-07-02 | -Wuninitialized: assume that an __attribute__((returns_twice)) function might | Richard Smith |
2012-07-02 | Thread safety analysis: fixed bug that occurs when very silly people | DeLesley Hutchins |
2012-07-02 | Thread safety analysis: fixed incorrect error message at the end of a locks_r... | DeLesley Hutchins |
2012-07-02 | Thread safety analysis: don't warn in case of duplicate annotation. | DeLesley Hutchins |
2012-07-02 | Thread Safety Analysis: turn off checking within trylock functions. | DeLesley Hutchins |
2012-07-02 | Bail out the LiveVariables analysis when the CFG is very large, as | Ted Kremenek |
2012-06-28 | Thread safety analysis: support release() function on scoped | DeLesley Hutchins |
2012-06-25 | Thread safety analysis: implement lock_returned attribute. | DeLesley Hutchins |
2012-06-22 | Thread safety analysis: fixes a bug in which locksets are not handled | DeLesley Hutchins |
2012-06-21 | Remove a goofy CMake hack and use the standard CMake facilities to | Chandler Carruth |
2012-06-16 | -Wuninitialized bugfix: when entering the scope of a variable with no | Richard Smith |
2012-06-06 | Revert Decl's iterators back to pointer value_type rather than reference valu... | David Blaikie |
2012-06-06 | Remove unused private member variables found by clang's new -Wunused-private-... | Benjamin Kramer |
2012-06-06 | Zap the /Za compiler switch from MSVC projects, the option is considered harm... | Francois Pichet |
2012-06-04 | Make suggestions for mismatched enum arguments to printf/scanf. | Jordan Rose |
2012-06-04 | Teach printf/scanf about enums with fixed underlying types. | Jordan Rose |
2012-06-01 | static analyzer: add inlining support for directly called blocks. | Ted Kremenek |
2012-05-30 | Suggest '%@' for Objective-C objects in ObjC format strings. | Jordan Rose |
2012-05-25 | Split a chunk of -Wconditional-uninitialized warnings out into a separate flag, | Richard Smith |
2012-05-24 | Some cleanups around the uninitialized variables warning, and a FIXME. No fun... | Richard Smith |
2012-05-08 | Make -Wformat accept printf("%hhx", c); with -funsigned-char | Hans Wennborg |
2012-05-04 | Fix handling of wint_t - we can't assume wint_t is purely an integer promotio... | James Molloy |