| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | If block literal return type is not specified, return type of the block is | Fariborz Jahanian | 2011-12-03 | 1 | -1/+3 |
* | When sending a message to a receiver that has "unknown any" type, | Douglas Gregor | 2011-12-01 | 1 | -0/+9 |
* | Test isa<FunctionDecl> to exclude objective-C methods. This ensures the follo... | Lang Hames | 2011-11-29 | 1 | -1/+1 |
* | Remove code made redundant by my previous patch. | Fariborz Jahanian | 2011-11-28 | 1 | -12/+1 |
* | pinpoint name/location of deprecated/unavailable enumerator | Fariborz Jahanian | 2011-11-28 | 1 | -1/+8 |
* | In Microsoft mode, make "Unqualified lookup into dependent bases of class tem... | Francois Pichet | 2011-11-25 | 1 | -2/+13 |
* | Add feature to diagnostics that will provide more information on function | Richard Trieu | 2011-11-23 | 1 | -0/+9 |
* | In Microsoft mode, make "Unqualified lookup into dependent bases of class tem... | Francois Pichet | 2011-11-17 | 1 | -1/+17 |
* | In Microsoft mode, make "Unqualified lookup into dependent bases of class tem... | Francois Pichet | 2011-11-15 | 1 | -1/+3 |
* | Resolve placeholder expressions before trying to deduce | John McCall | 2011-11-15 | 1 | -4/+1 |
* | ARC: make assignment to 'self' within class methods illegal. Fixes <rdar://p... | Ted Kremenek | 2011-11-14 | 1 | -1/+3 |
* | Add missing casts to AST. | Eli Friedman | 2011-11-12 | 1 | -1/+8 |
* | Be sure to insulate block literals from any cleanups in their | John McCall | 2011-11-11 | 1 | -0/+12 |
* | There's no good reason to track temporaries in ExprWithCleanups, | John McCall | 2011-11-10 | 1 | -11/+30 |
* | objc: Don't crash on missing @interface decl. | Fariborz Jahanian | 2011-11-08 | 1 | -6/+7 |
* | Change the AST representation of operations on Objective-C | John McCall | 2011-11-06 | 1 | -6/+10 |
* | back out changes in r143399 and r143475. | Fariborz Jahanian | 2011-11-02 | 1 | -3/+0 |
* | Find copy constructor needed to copy an rvalue reference | Fariborz Jahanian | 2011-11-01 | 1 | -1/+4 |
* | Fix the representation of wide strings in the AST and IR so that it uses the ... | Eli Friedman | 2011-11-01 | 1 | -1/+1 |
* | Rename Expr::Evaluate to Expr::EvaluateAsRValue to make it clear that it will | Richard Smith | 2011-10-29 | 1 | -1/+1 |
* | Add (hopefully) the last missing lvalue-to-rvalue conversion. Add an assertion | Richard Smith | 2011-10-28 | 1 | -2/+13 |
* | Be sure to build a dependent expression when we see | John McCall | 2011-10-28 | 1 | -12/+24 |
* | Add missing lvalue-to-rvalue conversion to vector splat casts. | Richard Smith | 2011-10-27 | 1 | -2/+6 |
* | Restore r142914 and r142915, now with missing file and apparent | John McCall | 2011-10-25 | 1 | -232/+178 |
* | Revert r142914 and r142915, due to possibly missing file. | NAKAMURA Takumi | 2011-10-25 | 1 | -178/+232 |
* | Pull the pseudo-object stuff into its own file. | John McCall | 2011-10-25 | 1 | -334/+23 |
* | Introduce a placeholder type for "pseudo object" | John McCall | 2011-10-25 | 1 | -155/+412 |
* | Don't forget to complete the objc interface before asking for information, | Argyrios Kyrtzidis | 2011-10-19 | 1 | -1/+2 |
* | Move static array parameter checks to SemaExpr, per Doug's request | Peter Collingbourne | 2011-10-19 | 1 | -2/+60 |
* | Macro metaprogramming for builtin types. | John McCall | 2011-10-18 | 1 | -30/+5 |
* | -Wc++98-compat and -Wc++98-compat-pedantic warnings for Sema, part 1. | Richard Smith | 2011-10-18 | 1 | -4/+9 |
* | Perform lvalue-to-rvalue conversions on __builtin_offsetof array argument index | Richard Smith | 2011-10-17 | 1 | -6/+6 |
* | The comparison of two vectors should return a signed result. hasIntegerRepres... | Tanya Lattner | 2011-10-17 | 1 | -9/+9 |
* | Add missing case to switch. | Eli Friedman | 2011-10-17 | 1 | -0/+1 |
* | Teach the ARC compiler to not require __bridge casts when | John McCall | 2011-10-17 | 1 | -12/+70 |
* | Perform an lvalue-to-rvalue conversion on an array index in a __builtin_offse... | Richard Smith | 2011-10-17 | 1 | -1/+5 |
* | Slightly simplify a constant expression check. No functional change. | Richard Smith | 2011-10-16 | 1 | -3/+3 |
* | Check for unavailable declarations in Sema::CanUseDecl. | Sebastian Redl | 2011-10-16 | 1 | -0/+6 |
* | Drop the Diagnose parameter from Sema::PerformImplicitConversion again and in... | Sebastian Redl | 2011-10-16 | 1 | -3/+17 |
* | obj-c++: allow the getter/setter to return/take parameters | Fariborz Jahanian | 2011-10-15 | 1 | -2/+4 |
* | Provide half floating point support as a storage only type. | Anton Korobeynikov | 2011-10-14 | 1 | -7/+21 |
* | Don't try to diagnose anything when we're passing incomplete types | Douglas Gregor | 2011-10-14 | 1 | -1/+4 |
* | Fix misplaced comment. | Fariborz Jahanian | 2011-10-14 | 1 | -3/+3 |
* | Make value kind based on the return type of the getter, not | Fariborz Jahanian | 2011-10-14 | 1 | -4/+4 |
* | HasFormOfMemberPointer implies IsAddressOfOperand for an overload set. Simplify | Douglas Gregor | 2011-10-13 | 1 | -1/+1 |
* | Allow calling an overloaded function set by taking the address of the | Douglas Gregor | 2011-10-13 | 1 | -2/+2 |
* | Catch placeholder types in DefaultLvalueConversion | John McCall | 2011-10-11 | 1 | -8/+32 |
* | Constant expression evaluation refactoring: | Richard Smith | 2011-10-10 | 1 | -2/+3 |
* | Only allow taking the address of an expression of type 'overloaded | Douglas Gregor | 2011-10-09 | 1 | -1/+8 |
* | Move type-checking for C-style casts in C into the now-misnamed | John McCall | 2011-10-06 | 1 | -242/+33 |