| Commit message (Expand) | Author | Age | Files | Lines |
| * | Rework the way we find locally-scoped external declarations when we | Douglas Gregor | 2009-03-02 | 1 | -23/+0 |
| * | Remove PrevFunctionScope slot (it isn't needed)...use getParent() instead. | Steve Naroff | 2009-02-28 | 1 | -3/+3 |
| * | Fix <rdar://problem/6451399> problems with labels and blocks. | Steve Naroff | 2009-02-28 | 1 | -2/+13 |
| * | In BuildAnonymousStructUnionMemberReference, we shouldn't invalidate OpLoc when | Ted Kremenek | 2009-02-27 | 1 | -1/+0 |
| * | Change the AST generated for offsetof a bit so that it looks like a | Eli Friedman | 2009-02-27 | 1 | -7/+12 |
| * | Create a new TypeNodes.def file that enumerates all of the types, | Douglas Gregor | 2009-02-26 | 1 | -6/+6 |
| * | fix some sema problems with wide strings and hook up basic codegen for them. | Chris Lattner | 2009-02-26 | 1 | -1/+1 |
| * | Introduce code modification hints into the diagnostics system. When we | Douglas Gregor | 2009-02-26 | 1 | -0/+5 |
| * | Make more AST nodes and semantic checkers dependent-expression-aware. | Sebastian Redl | 2009-02-26 | 1 | -57/+96 |
| * | C99 DR #316 implies that the function parameter types that are known | Douglas Gregor | 2009-02-25 | 1 | -0/+13 |
| * | Minor cleanup for IntToBlockPointer so it applies to all callers of | Eli Friedman | 2009-02-25 | 1 | -5/+1 |
| * | In C, when we see a function declaration within a local scope, export | Douglas Gregor | 2009-02-24 | 1 | -1/+24 |
| * | Revert http://llvm.org/viewvc/llvm-project?view=rev&revision=65244. | Steve Naroff | 2009-02-23 | 1 | -1/+0 |
| * | More work to integrate newly added ObjCQualifiedClassType into the type system. | Steve Naroff | 2009-02-21 | 1 | -1/+3 |
| * | This fixes <rdar://problem/6497650> More type mismatches issues with clang. | Steve Naroff | 2009-02-21 | 1 | -14/+0 |
| * | Add enough checking to ensure that non-constant block literals don't | Mike Stump | 2009-02-19 | 1 | -1/+5 |
| * | fix another typo gabor noticed | Chris Lattner | 2009-02-19 | 1 | -1/+1 |
| * | Fit 80col and fix indentation. | Mike Stump | 2009-02-19 | 1 | -263/+264 |
| * | Fix spacing. | Mike Stump | 2009-02-19 | 1 | -1/+1 |
| * | rip out __builtin_overload | Chris Lattner | 2009-02-18 | 1 | -95/+0 |
| * | Downgrade complaints about calling unavailable functions to a warning | Douglas Gregor | 2009-02-18 | 1 | -43/+101 |
| * | privatize all of the string literal memory allocation/creation | Chris Lattner | 2009-02-18 | 1 | -9/+5 |
| * | Don't allow calls to functions marked "unavailable". There's more work | Douglas Gregor | 2009-02-18 | 1 | -2/+10 |
| * | change the StringLiteral AST node to track all of the SourceLocations of | Chris Lattner | 2009-02-18 | 1 | -6/+10 |
| * | fix rdar://6597252: two exactly identical pointer types are always | Chris Lattner | 2009-02-18 | 1 | -7/+15 |
| * | rename some variables, no functionality change. | Chris Lattner | 2009-02-18 | 1 | -71/+72 |
| * | Renamed ASQualType to ExtQualType to reflect its more | Fariborz Jahanian | 2009-02-17 | 1 | -1/+1 |
| * | emit: | Chris Lattner | 2009-02-17 | 1 | -3/+4 |
| * | enhance ExtVectorElementExpr to allow V->xxyy to work like (*V).xxyy | Chris Lattner | 2009-02-16 | 1 | -1/+1 |
| * | do not warn about uses of deprecated decls when in an out-of-line objc method | Chris Lattner | 2009-02-16 | 1 | -5/+25 |
| * | When inside an Objective-C++ method, name lookup should look into the | Douglas Gregor | 2009-02-16 | 1 | -14/+15 |
| * | Add support for deprecating ObjC properties. Unlike GCC, we warn that the | Chris Lattner | 2009-02-16 | 1 | -6/+29 |
| * | add support for deprecated objc ivars. | Chris Lattner | 2009-02-16 | 1 | -0/+9 |
| * | Add support for deprecated members of RecordDecls (e.g. struct fields). | Chris Lattner | 2009-02-16 | 1 | -0/+3 |
| * | Don't allow taking the address of an element in an ext_vector | Nate Begeman | 2009-02-15 | 1 | -3/+3 |
| * | Refactor the deprecated and unavailable checks into a new | Chris Lattner | 2009-02-15 | 1 | -26/+35 |
| * | allow implementations of deprecated functions to use deprecated symbols. | Chris Lattner | 2009-02-15 | 1 | -4/+10 |
| * | Add hook to add attributes to function declarations that we know | Douglas Gregor | 2009-02-14 | 1 | -1/+1 |
| * | reduce nesting. | Chris Lattner | 2009-02-14 | 1 | -14/+11 |
| * | Implicitly declare certain C library functions (malloc, strcpy, memmove, | Douglas Gregor | 2009-02-13 | 1 | -4/+4 |
| * | If x is an invalid field decl, don't construct an expression for P->x, | Chris Lattner | 2009-02-13 | 1 | -0/+12 |
| * | Fix <rdar://problem/6499801> clang does not detect objc type mismatch in cond... | Steve Naroff | 2009-02-12 | 1 | -6/+5 |
| * | Several cleanups: | Steve Naroff | 2009-02-12 | 1 | -21/+6 |
| * | Initial implementation of function overloading in C. | Douglas Gregor | 2009-02-11 | 1 | -1/+5 |
| * | Rudimentary checking of template arguments against their corresponding | Douglas Gregor | 2009-02-09 | 1 | -1/+3 |
| * | CallExpr now uses ASTContext's allocate to allocate/delete its array of subex... | Ted Kremenek | 2009-02-09 | 1 | -8/+10 |
| * | Allocate the subexpression array for OberloadExpr from ASTContext's allocator. | Ted Kremenek | 2009-02-09 | 1 | -1/+1 |
| * | Move CheckPointerToMemberOperands to SemaExprCXX.cpp | Sebastian Redl | 2009-02-07 | 1 | -67/+0 |
| * | Overhaul of Stmt allocation: | Ted Kremenek | 2009-02-07 | 1 | -8/+7 |
| * | Add negative test cases and fix diagnostics for member pointer dereferencing. | Sebastian Redl | 2009-02-07 | 1 | -2/+2 |