| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | When complaining about a non-POD second argument to va_arg, use a | Douglas Gregor | 2011-07-30 | 1 | -2/+5 |
* | Fix an inconsistency in Sema::ConvertArgumentsForCall in that | Peter Collingbourne | 2011-07-29 | 1 | -5/+12 |
* | Add */& mismatch fixit generation to the Sema::DiagnoseAssignmentResult(). | Anna Zaks | 2011-07-28 | 1 | -2/+30 |
* | Add support for C++0x unicode string and character literals, from Craig Topper! | Douglas Gregor | 2011-07-27 | 1 | -7/+32 |
* | Revert r136046 while fixing handling of e.g. &foo[index_one_past_size] | Kaelyn Uhrain | 2011-07-26 | 1 | -17/+0 |
* | Expand array bounds checking to work in the presence of unary & and *, | Kaelyn Uhrain | 2011-07-26 | 1 | -0/+17 |
* | Test commit | Kaelyn Uhrain | 2011-07-26 | 1 | -1/+0 |
* | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -13/+13 |
* | This handles the missing cases of opencl vector literals. | Tanya Lattner | 2011-07-15 | 1 | -5/+18 |
* | Remove warnings of constant operands of logical operators from template insta... | Richard Trieu | 2011-07-15 | 1 | -2/+2 |
* | In debugger mode, make ObjC message sends to unknown selectors return | John McCall | 2011-07-13 | 1 | -5/+5 |
* | Fix a bug where a local variable named 'self' is causing | Fariborz Jahanian | 2011-07-12 | 1 | -22/+4 |
* | Pop block scope after reading from it. | Benjamin Kramer | 2011-07-12 | 1 | -4/+4 |
* | Fix typo correction crash on overloaded functions, pr10283. | Hans Wennborg | 2011-07-12 | 1 | -2/+1 |
* | Add diagnostic for constructs like "va_arg(l, float)" which have undefined be... | Eli Friedman | 2011-07-11 | 1 | -0/+17 |
* | objc-arc: Diagnose when captured variable in block literals | Fariborz Jahanian | 2011-07-11 | 1 | -0/+9 |
* | objc++-arc: more diagnosis of converting a weak-unavailable | Fariborz Jahanian | 2011-07-08 | 1 | -1/+1 |
* | objc++-arc: diagnose assignment/cast of a weak-unavailable | Fariborz Jahanian | 2011-07-07 | 1 | -21/+11 |
* | objc-arc: diagnose assignment/cast of a weak-unavailable | Fariborz Jahanian | 2011-07-07 | 1 | -1/+32 |
* | [ARC] When casting from a pointer to an objective-c object with known ownersh... | Argyrios Kyrtzidis | 2011-07-01 | 1 | -6/+14 |
* | -Remove Sema::ActOnCastOfParenListExpr and move most of its functionality to | Argyrios Kyrtzidis | 2011-07-01 | 1 | -79/+95 |
* | Add support for C++ namespace-aware typo correction, e.g., correcting | Douglas Gregor | 2011-06-28 | 1 | -18/+23 |
* | Cleanup a fixme by using a specific diagnostic for subscripting | Chandler Carruth | 2011-06-27 | 1 | -3/+2 |
* | Factor out (some of) the checking for invalid forms of pointer | Chandler Carruth | 2011-06-27 | 1 | -126/+151 |
* | objc-arc: Check on a variety of unsafe assignment of retained | Fariborz Jahanian | 2011-06-24 | 1 | -2/+2 |
* | Rename objc_lifetime -> objc_ownership, and modify diagnostics to talk about ... | Argyrios Kyrtzidis | 2011-06-24 | 1 | -2/+2 |
* | Fix Sema::CheckVectorOperands so that it doesn't try to insert a cast express... | Eli Friedman | 2011-06-23 | 1 | -36/+29 |
* | Move all of Sema's member-access-related checking out of SemaExpr.cpp | Douglas Gregor | 2011-06-23 | 1 | -1587/+11 |
* | Check for placeholders early on in | Douglas Gregor | 2011-06-22 | 1 | -4/+6 |
* | Changes ParenListExpr to always require a type. | Manuel Klimek | 2011-06-22 | 1 | -1/+2 |
* | Fix the starting location of the Fix-It note for suspicious precedence | Douglas Gregor | 2011-06-22 | 1 | -1/+2 |
* | Revert r133526 which re-orders the suggestions for -Wparentheses on ?: | Chandler Carruth | 2011-06-21 | 1 | -4/+4 |
* | Switch the order of the notes for the parentheses suggested in the case | Chandler Carruth | 2011-06-21 | 1 | -4/+4 |
* | Make more use of llvm::StringRef in various APIs. In particular, don't | Jay Foad | 2011-06-21 | 1 | -1/+0 |
* | Warn for un-parenthesized '&' inside '|' (a & b | c), rdar://9553326. | Argyrios Kyrtzidis | 2011-06-20 | 1 | -1/+30 |
* | Fix a problem with the diagnostics of invalid arithmetic with function | Chandler Carruth | 2011-06-20 | 1 | -2/+2 |
* | Move away from the poor "abstraction" I added to Type. John argued | Chandler Carruth | 2011-06-20 | 1 | -24/+32 |
* | Restructure the API in Type based on a conversation with Richard Smith. | Chandler Carruth | 2011-06-20 | 1 | -1/+4 |
* | Add test cases for false positives on -Wnull-arithmetic from Richard | Chandler Carruth | 2011-06-19 | 1 | -25/+8 |
* | Add a minor hack to avoid using isNullPointerConstant on a hot path. Fixes -... | Eli Friedman | 2011-06-17 | 1 | -6/+5 |
* | Don't emit 'unavailable' errors inside an unavailable function. rdar://9623855. | Argyrios Kyrtzidis | 2011-06-17 | 1 | -12/+14 |
* | Objective-C fast enumeration loop variables are not retained in ARC, but | John McCall | 2011-06-17 | 1 | -10/+13 |
* | Implement proper support for generating code for compound literals in | Douglas Gregor | 2011-06-17 | 1 | -2/+3 |
* | Check for placeholder expressions before promoting an argument passed | Douglas Gregor | 2011-06-17 | 1 | -1/+5 |
* | Add a new warning when a NULL constant is used in arithmetic operations. The... | Richard Trieu | 2011-06-16 | 1 | -0/+54 |
* | Allow comparison between block pointers and NULL pointer | Douglas Gregor | 2011-06-16 | 1 | -2/+4 |
* | arc: diagnose dereferencing a __weak pointer which may be | Fariborz Jahanian | 2011-06-16 | 1 | -0/+10 |
* | Refactor parentheses suggestion notes to have less code duplication and | Chandler Carruth | 2011-06-16 | 1 | -63/+36 |
* | Cleanup the parameter naming style. | Chandler Carruth | 2011-06-16 | 1 | -8/+8 |
* | Automatic Reference Counting. | John McCall | 2011-06-15 | 1 | -32/+197 |