| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Implement parsing and code generation of Objective-C string literals. | Anders Carlsson | 2007-08-21 | 1 | -0/+14 |
* | Return true in case of error, which is what other functions do. | Anders Carlsson | 2007-08-17 | 1 | -1/+1 |
* | Add initial support for constant CFStrings. | Anders Carlsson | 2007-08-17 | 1 | -1/+2 |
* | Fixed Sema::CheckEqualityOperands() and Sema::CheckRelationalOperands() to de... | Steve Naroff | 2007-08-16 | 1 | -28/+52 |
* | Added support for additional format string checking for the printf | Ted Kremenek | 2007-08-14 | 1 | -1/+1 |
* | initial support for checking format strings, patch by Ted Kremenek: | Chris Lattner | 2007-08-10 | 1 | -0/+8 |
* | Make sure the arithmetic conversion are done for relation and equality operat... | Steve Naroff | 2007-08-10 | 1 | -4/+14 |
* | Move the function/array conversion for ParmVarDecl's from Sema::ParseIdentifi... | Steve Naroff | 2007-08-07 | 1 | -26/+0 |
* | Remove a space from "typeof" printing. It was causing the following error... | Steve Naroff | 2007-08-05 | 1 | -1/+1 |
* | Make sure the good old "function/array conversion" is done to function parame... | Steve Naroff | 2007-08-05 | 1 | -1/+26 |
* | Restrict vector component access (using "." and "[]") to variables. | Steve Naroff | 2007-08-03 | 1 | -0/+9 |
* | Implement __builtin_choose_expr. | Steve Naroff | 2007-08-03 | 1 | -0/+22 |
* | Rename AddrLabel and OCUVectorComponent -> AddrLabelExpr and OCUVectorElement... | Chris Lattner | 2007-08-03 | 1 | -3/+3 |
* | rename some helpers, have them return the idx of the field being accessed. | Chris Lattner | 2007-08-02 | 1 | -6/+13 |
* | - Finish hooking up support for __builtin_types_compatible_p(). | Steve Naroff | 2007-08-01 | 1 | -2/+2 |
* | Add AST/Sema support for __builtin_types_compatible_p (a GNU extension). | Steve Naroff | 2007-08-01 | 1 | -0/+12 |
* | simplify some type checking code, don't explicitly access | Chris Lattner | 2007-07-31 | 1 | -43/+37 |
* | split the rest of the type predicates into pure predicates: | Chris Lattner | 2007-07-31 | 1 | -6/+6 |
* | rename isReferenceType to follow the new scheme. | Chris Lattner | 2007-07-31 | 1 | -2/+2 |
* | make isPointerType() a pure predicate, rename the | Chris Lattner | 2007-07-31 | 1 | -4/+4 |
* | Add parsing and AST support for GNU "typeof". | Steve Naroff | 2007-07-31 | 1 | -1/+1 |
* | Don't use canonical type for sema here. In | Chris Lattner | 2007-07-30 | 1 | -1/+1 |
* | Finish up semantic analysis for vector components. | Steve Naroff | 2007-07-30 | 1 | -0/+4 |
* | Implement pretty diagnostics when doing on-the-fly vector sizing (for vector ... | Steve Naroff | 2007-07-29 | 1 | -1/+9 |
* | Added a new expression, OCUVectorComponent. | Steve Naroff | 2007-07-28 | 1 | -2/+1 |
* | Implement syntax/semantic analysis for OCU Vector Components. | Steve Naroff | 2007-07-27 | 1 | -5/+61 |
* | Fix the following bogus diagnostic...reported by Jeroen. | Steve Naroff | 2007-07-26 | 1 | -4/+5 |
* | Various improvements to Sema::ParseMemberReferenceExpr(). | Steve Naroff | 2007-07-26 | 1 | -23/+24 |
* | - Fix commit in Parser.h (patch by Kevin Andre). | Steve Naroff | 2007-07-25 | 1 | -4/+2 |
* | Fix Sema::ParseCallExpr()...it wasn't doing the default array/function promot... | Steve Naroff | 2007-07-24 | 1 | -7/+12 |
* | implement ast building and trivial semantic analysis of stmt exprs. | Chris Lattner | 2007-07-24 | 1 | -0/+23 |
* | Implement code generation for __func__, __FUNCTION__ and __PRETTY_FUNCTION__ | Anders Carlsson | 2007-07-21 | 1 | -4/+13 |
* | fix a warning on some compilers | Chris Lattner | 2007-07-21 | 1 | -0/+1 |
* | Fix off-by-one error when emitting diagnostics. Also, make diagnostic | Chris Lattner | 2007-07-21 | 1 | -2/+3 |
* | move some casts up to the entry of the function for clarity. | Chris Lattner | 2007-07-21 | 1 | -23/+23 |
* | At one point there were going to be lexer and parser tokens. | Chris Lattner | 2007-07-20 | 1 | -3/+3 |
* | Finish fixing crasher with compound literals. | Steve Naroff | 2007-07-19 | 1 | -4/+5 |
* | Work towards fixing crasher with compound literals... | Steve Naroff | 2007-07-19 | 1 | -0/+22 |
* | Cast to void is valid, patch by Benoit Boissinot | Chris Lattner | 2007-07-18 | 1 | -2/+3 |
* | Use the correct method for getting the ReferenceType from a QualType. | Bill Wendling | 2007-07-17 | 1 | -2/+2 |
* | Change dyn_cast for reference types to be more like pointers and not need the... | Bill Wendling | 2007-07-17 | 1 | -4/+8 |
* | Fix references: | Bill Wendling | 2007-07-17 | 1 | -1/+5 |
* | Convert UsualArithmeticConversions to return "void". Now that we synthesize I... | Steve Naroff | 2007-07-17 | 1 | -57/+71 |
* | Implement semantic analysis for the cast operator. | Steve Naroff | 2007-07-16 | 1 | -4/+16 |
* | Remove the 2 QualType references to method UsualArithmeticConversions. Last w... | Steve Naroff | 2007-07-16 | 1 | -27/+19 |
* | Change DefaultFunctionArrayConversions and UsualUnaryConversions to return vo... | Steve Naroff | 2007-07-16 | 1 | -34/+49 |
* | Fix a GCC warning: | Chris Lattner | 2007-07-16 | 1 | -3/+5 |
* | Now that isPointerType can return a pointer type, avoid stripping off typedef | Chris Lattner | 2007-07-16 | 1 | -3/+4 |
* | Use the return value of isPointerType and isVectorType to significantly simplify | Chris Lattner | 2007-07-16 | 1 | -36/+35 |
* | rename variables to be more consistent. Always use LHS/RHS intead of T1/T2 s... | Chris Lattner | 2007-07-15 | 1 | -15/+12 |