| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | The lvalue-to-rvalue on structs in C++ is actually part | John McCall | 2011-08-27 | 1 | -0/+29 |
* | Improve the correctness and accuracy of the message for -Wdynamic-class-memac... | Matt Beaumont-Gay | 2011-08-19 | 1 | -10/+13 |
* | Enhance -Wstrl-incorrect-size to not report a FIXIT for destinations that are... | Ted Kremenek | 2011-08-18 | 1 | -10/+18 |
* | Reapply r137903, but fix the definition of size_t in the test case to use __S... | Ted Kremenek | 2011-08-18 | 1 | -1/+96 |
* | Revert r137903, "Add experimental -Wstrlcpy-size warning that looks to see if... | Ted Kremenek | 2011-08-18 | 1 | -96/+1 |
* | Add experimental -Wstrlcpy-size warning that looks to see if the size argumen... | Ted Kremenek | 2011-08-17 | 1 | -1/+96 |
* | Add a test case for the divide-by-zero fix in r137234 | Kaelyn Uhrain | 2011-08-10 | 1 | -0/+1 |
* | Make sure ptrarith_typesize is at least 1 to avoid division by zero | Kaelyn Uhrain | 2011-08-10 | 1 | -0/+1 |
* | Only look at decls after the current one when checking if it's the last field... | Benjamin Kramer | 2011-08-06 | 1 | -10/+6 |
* | Perform array bounds checking in more situations and properly handle special | Kaelyn Uhrain | 2011-08-05 | 1 | -26/+89 |
* | Flesh out the -Warray-bounds detection of C89 tail-padded one-element | Chandler Carruth | 2011-08-05 | 1 | -10/+39 |
* | Finally getting around to re-working this to more accurately white-list | Chandler Carruth | 2011-08-05 | 1 | -8/+22 |
* | Extend memset/memcpy/memmove checking to include memcmp | Matt Beaumont-Gay | 2011-08-05 | 1 | -6/+13 |
* | disable array bounds overflow warning for cases where an array | Chris Lattner | 2011-08-02 | 1 | -1/+3 |
* | Add support for C++0x unicode string and character literals, from Craig Topper! | Douglas Gregor | 2011-07-27 | 1 | -2/+2 |
* | Revert r136046 while fixing handling of e.g. &foo[index_one_past_size] | Kaelyn Uhrain | 2011-07-26 | 1 | -68/+21 |
* | Cleanup the stray comments and variables I could dig out of Sema to | Chandler Carruth | 2011-07-26 | 1 | -5/+5 |
* | Expand array bounds checking to work in the presence of unary & and *, | Kaelyn Uhrain | 2011-07-26 | 1 | -21/+68 |
* | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -11/+11 |
* | Remove warning for conditional operands of differend signedness from -Wsign-c... | Richard Trieu | 2011-07-21 | 1 | -20/+7 |
* | Use the new APFloat::convertToInt(APSInt) function to simplify uses of | Jeffrey Yasskin | 2011-07-15 | 1 | -7/+5 |
* | Teach -Wconversion, -Wsign-compare etc. about division and remainder. | John McCall | 2011-07-14 | 1 | -4/+44 |
* | Make the integer-range analysis recognize ^= correctly, | John McCall | 2011-07-13 | 1 | -2/+11 |
* | In ARC, reclaim all return values of retainable type, not just those | John McCall | 2011-07-07 | 1 | -0/+1 |
* | objc-arc: Check on a variety of unsafe assignment of retained | Fariborz Jahanian | 2011-06-24 | 1 | -4/+39 |
* | Rename objc_lifetime -> objc_ownership, and modify diagnostics to talk about ... | Argyrios Kyrtzidis | 2011-06-24 | 1 | -1/+1 |
* | Fix some grammar nits in the comments from Nick. | Chandler Carruth | 2011-06-21 | 1 | -2/+2 |
* | Introduce a new AST node describing reference binding to temporaries. | Douglas Gregor | 2011-06-21 | 1 | -0/+16 |
* | Teach the warning about non-POD memset/memcpy/memmove to deal with the | Douglas Gregor | 2011-06-16 | 1 | -12/+40 |
* | Rework the warning for 'memset(p, 0, sizeof(p))' where 'p' is a pointer | Chandler Carruth | 2011-06-16 | 1 | -22/+69 |
* | Skip both character pointers and void pointers when diagnosing bad | Chandler Carruth | 2011-06-16 | 1 | -1/+3 |
* | Automatic Reference Counting. | John McCall | 2011-06-15 | 1 | -14/+268 |
* | Warn on memset(ptr, 0, sizeof(ptr)). Diagnostic wording by Jordy Rose. | Nico Weber | 2011-06-14 | 1 | -1/+27 |
* | fix rdar://9546171 - -Wshorten-64-to-32 shouldn't warn on vector bitcasts. | Chris Lattner | 2011-06-14 | 1 | -3/+6 |
* | Fix a broken index left over from before this function was converted to | Chandler Carruth | 2011-06-13 | 1 | -1/+1 |
* | Clean up the "non-POD memaccess" stuff some. This adds a properly named | Chandler Carruth | 2011-06-03 | 1 | -16/+10 |
* | Add a new warning on NULL pointer constant to integer conversion. | Richard Trieu | 2011-05-29 | 1 | -0/+7 |
* | A few more is(Un)signedIntegerType/is(Un)signedOrEnumerationType cleanups. | Douglas Gregor | 2011-05-21 | 1 | -2/+3 |
* | Extend -Wnon-pod-memset to also encompass memcpy() and memmove(), | Douglas Gregor | 2011-05-03 | 1 | -36/+44 |
* | Separate the -Wnon-pod-memset warnings into two separate warnings: | Douglas Gregor | 2011-05-03 | 1 | -10/+20 |
* | Only check the use of memset() if we're refering to a C function named | Douglas Gregor | 2011-05-03 | 1 | -1/+3 |
* | Relax the non-POD memset warning to use the less restrictive C++11 | Chandler Carruth | 2011-04-29 | 1 | -12/+25 |
* | Convert assertion in memset checking to a runtime check (because real code ma... | Ted Kremenek | 2011-04-28 | 1 | -1/+6 |
* | Heh, funny thing, 'void' isn't a POD type. Nice of us to suggest it to | Chandler Carruth | 2011-04-27 | 1 | -1/+1 |
* | Add a warning (-Wnon-pod-memset) for calls to memset() with | Chandler Carruth | 2011-04-27 | 1 | -0/+34 |
* | Support for C++11 (non-template) alias declarations. | Richard Smith | 2011-04-15 | 1 | -2/+2 |
* | fix a bunch of comment typos found by codespell. Patch by | Chris Lattner | 2011-04-15 | 1 | -1/+1 |
* | C1X: implement generic selections | Peter Collingbourne | 2011-04-15 | 1 | -19/+9 |
* | Enhance the diagnostic for literal float -> int conversions to suggest | Chandler Carruth | 2011-04-10 | 1 | -4/+35 |
* | add a __sync_swap builtin to fill out the rest of the __sync builtins. | Chris Lattner | 2011-04-09 | 1 | -1/+4 |