| Commit message (Expand) | Author | Age | Files | Lines |
* | Make a major restructuring of the clang tree: introduce a top-level | Chris Lattner | 2008-03-15 | 1 | -823/+0 |
* | improve DeclStmt to be able to store SourceRange info correctly. | Chris Lattner | 2008-03-13 | 1 | -1/+2 |
* | Add fastcall/stdcall attribute support | Nate Begeman | 2008-03-07 | 1 | -1/+3 |
* | Add a bunch of attributes, patch by Nuno Lopes. | Chris Lattner | 2008-03-03 | 1 | -0/+7 |
* | Added support for attribute "noreturn." | Ted Kremenek | 2008-02-27 | 1 | -0/+1 |
* | add parsing, ast building and pretty printing support for C++ throw expressions. | Chris Lattner | 2008-02-26 | 1 | -0/+4 |
* | Handle __attribute__((annotate("string"))) | Nate Begeman | 2008-02-21 | 1 | -0/+1 |
* | move type attribute processing into the creatively named ProcessTypeAttribute... | Chris Lattner | 2008-02-21 | 1 | -1/+3 |
* | move ConvertDeclSpecToType into Sema | Chris Lattner | 2008-02-20 | 1 | -0/+1 |
* | Tabs are the enemy | Nate Begeman | 2008-02-20 | 1 | -7/+7 |
* | Handle packed attribute correctly | Anders Carlsson | 2008-02-16 | 1 | -1/+2 |
* | Add a diagnostics helper to remove some redundant code. | Steve Naroff | 2008-02-10 | 1 | -1/+4 |
* | A bunch-o changes to fix <rdar://problem/5716046> incomplete implementation o... | Steve Naroff | 2008-02-08 | 1 | -1/+2 |
* | Put back the top-level asm code; all tests pass now. | Anders Carlsson | 2008-02-08 | 1 | -1/+2 |
* | Back out 46855 for now, it causes test failures on Darwin. | Anders Carlsson | 2008-02-08 | 1 | -2/+1 |
* | Handle top-level asm declarations. | Anders Carlsson | 2008-02-07 | 1 | -1/+2 |
* | pass the astconsumer into Sema's ctor, clean up some stuff in | Chris Lattner | 2008-02-06 | 1 | -2/+3 |
* | Handle simple asm statements correctly. | Anders Carlsson | 2008-02-05 | 1 | -0/+1 |
* | Add experimental support for address space qualified types. Address space | Christopher Lamb | 2008-02-04 | 1 | -1/+8 |
* | AST for @synchronized. | Fariborz Jahanian | 2008-01-29 | 1 | -0/+3 |
* | Replace Sema::CheckVariableInitList, CheckConstantInitList, and CheckForCharA... | Steve Naroff | 2008-01-25 | 1 | -10/+2 |
* | - Add Sema::CheckStringLiteralInit, Sema::IsStringLiteralInit. | Steve Naroff | 2008-01-22 | 1 | -0/+4 |
* | Implement basic overload support via a new builtin, __builtin_overload. | Nate Begeman | 2008-01-17 | 1 | -0/+6 |
* | Move promoteExprToType from being a static method in SemaExpr.cpp to being | Chris Lattner | 2008-01-16 | 1 | -0/+4 |
* | Add first pieces of support for parsing and representing | Chris Lattner | 2008-01-12 | 1 | -0/+3 |
* | - Teach Expr::isConstantExpr() about InitListExpr's (and offsetof, since I no... | Steve Naroff | 2008-01-10 | 1 | -7/+7 |
* | Substituted all instances of the string "Objc" for "ObjC". This fixes | Ted Kremenek | 2008-01-07 | 1 | -47/+47 |
* | Minor refactoring of foreach's semantics code per Chris's suggetion. | Fariborz Jahanian | 2008-01-04 | 1 | -1/+1 |
* | add comments for the various AssignConvertType's, and split int->pointer from... | Chris Lattner | 2008-01-04 | 1 | -3/+29 |
* | Merge all the 'assignment' diagnostic code into one routine, decloning | Chris Lattner | 2008-01-04 | 1 | -13/+21 |
* | Patch to add semantics check for ObjC2's foreacn statement. | Fariborz Jahanian | 2008-01-04 | 1 | -0/+4 |
* | generalize some of the conversion warnings. | Chris Lattner | 2008-01-03 | 1 | -0/+2 |
* | give better diagnostics for converting between function pointer and void*. | Chris Lattner | 2008-01-03 | 1 | -0/+1 |
* | Patch to parse/build AST ObjC2's foreach statement. | Fariborz Jahanian | 2008-01-03 | 1 | -0/+5 |
* | Don't attribute in file headers anymore. See llvmdev for the | Chris Lattner | 2007-12-29 | 1 | -2/+2 |
* | Change Sema::ActOnCallExpr to construct the CallExpr early and put it into | Chris Lattner | 2007-12-28 | 1 | -21/+11 |
* | implement semantic analysis for __builtin_islessequal and friends. | Chris Lattner | 2007-12-20 | 1 | -0/+2 |
* | refactor some code that handles sema of direct function calls. | Chris Lattner | 2007-12-19 | 1 | -4/+3 |
* | Fix an embarassing typo and add some very limited support for the aligned att... | Anders Carlsson | 2007-12-19 | 1 | -0/+2 |
* | implement correct semantic analysis for shifts. For: | Chris Lattner | 2007-12-12 | 1 | -1/+1 |
* | Add ObjC parser support for concatenated ObjC strings. Note that | Chris Lattner | 2007-12-12 | 1 | -2/+3 |
* | Add support for initializing char arrays from string literals. | Steve Naroff | 2007-12-10 | 1 | -1/+4 |
* | Patch to implement "Protocol" as a built-in type declared as | Fariborz Jahanian | 2007-12-07 | 1 | -4/+2 |
* | Simplified setting up Method's scope before generating AST for its nody. | Fariborz Jahanian | 2007-12-04 | 1 | -1/+1 |
* | Yesterday, I simplified how we stream top-level decls. | Steve Naroff | 2007-11-29 | 1 | -8/+1 |
* | Several fixes/simplifications surrounding how we stream top-level decl AST's. | Steve Naroff | 2007-11-28 | 1 | -6/+4 |
* | Add comment to CheckVectorCast.h | Anders Carlsson | 2007-11-27 | 1 | -0/+3 |
* | Report errors for invalid casts from/to vectors. | Anders Carlsson | 2007-11-27 | 1 | -0/+3 |
* | Moved logic for -Wfloat-equal to SemaChecking.cpp. | Ted Kremenek | 2007-11-25 | 1 | -0/+2 |
* | Keep track of whether the asm is volatile or not. | Anders Carlsson | 2007-11-23 | 1 | -0/+1 |