| Commit message (Expand) | Author | Age | Files | Lines |
| * | Switch this code to use the more idiomatic 'dyn_cast' pattern. | Chandler Carruth | 2011-08-16 | 1 | -4/+2 |
| * | Add fixit notes for -Wconstant-logical-operand. | Matt Beaumont-Gay | 2011-08-15 | 1 | -3/+18 |
| * | The current warning in -Wnull-arithmetic for comparisons between NULL and non... | Richard Trieu | 2011-08-11 | 1 | -3/+4 |
| * | Encapsulate the Objective-C id/Class/SEL "redefinition" types in | Douglas Gregor | 2011-08-11 | 1 | -8/+10 |
| * | Refactoring of DiagnoseBitwisePrecedence() in SemaExpr.cpp to reduce code dup... | Richard Trieu | 2011-08-10 | 1 | -26/+22 |
| * | Change an assert into a check. I'm pretty sure there was a point | John McCall | 2011-08-10 | 1 | -3/+13 |
| * | Make sure FunctionDecls aren't considered during overload resolution if there | Kaelyn Uhrain | 2011-08-08 | 1 | -4/+5 |
| * | Perform array bounds checking in more situations and properly handle special | Kaelyn Uhrain | 2011-08-05 | 1 | -5/+29 |
| * | Have the typo correction in DiagnoseEmptyLookup properly handle template | Kaelyn Uhrain | 2011-08-05 | 1 | -5/+9 |
| * | Fix a small bug where DiagnoseEmptyLookup would no longer print any messages | Kaelyn Uhrain | 2011-08-04 | 1 | -2/+1 |
| * | Improve overloaded function handling in the typo correction code. | Kaelyn Uhrain | 2011-08-03 | 1 | -1/+23 |
| * | Fix formatting of SemaExpr.cpp, mainly fixing lines greater than 80 characters. | Richard Trieu | 2011-08-02 | 1 | -109/+194 |
| * | Introduce a Fix-It for the "missing sentinel" warning, adding an | Douglas Gregor | 2011-07-30 | 1 | -5/+16 |
| * | 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 |