| Commit message (Expand) | Author | Age | Files | Lines |
| * | Introduce the canonical type smart pointers, and use them in a few places to | Douglas Gregor | 2009-08-05 | 1 | -8/+8 |
| * | Remove an unused header. | Mike Stump | 2009-08-05 | 1 | -1/+0 |
| * | Canonicalize else. | Mike Stump | 2009-08-04 | 1 | -12/+8 |
| * | Refactor methods on DeclSpec to take a diagnostic& parameter, and reflect this | John McCall | 2009-08-03 | 1 | -4/+8 |
| * | Minor renaming/refactoring. No change in functionality. | Fariborz Jahanian | 2009-08-03 | 1 | -3/+1 |
| * | PR3679 - enable #pragma weak aliasing. | Ryan Flynn | 2009-07-31 | 1 | -1/+1 |
| * | Rename Action::TagKind to Action::TagUseKind, which removes both a misnomer | John McCall | 2009-07-31 | 1 | -13/+13 |
| * | Add a CastKind enum to CastExpr. Right now it's not used for much but it will... | Anders Carlsson | 2009-07-31 | 1 | -1/+3 |
| * | PR3679 - handle #pragma weak | Ryan Flynn | 2009-07-30 | 1 | -11/+12 |
| * | Change uses of: | Ted Kremenek | 2009-07-29 | 1 | -8/+8 |
| * | Some minor cleanups, thanks Chris. | Mike Stump | 2009-07-28 | 1 | -8/+2 |
| * | Add support for -Wmissing-noreturn. | Mike Stump | 2009-07-28 | 1 | -2/+13 |
| * | Add noreturn support for blocks. | Mike Stump | 2009-07-28 | 1 | -2/+47 |
| * | Make longjmp a real builtin. | Mike Stump | 2009-07-28 | 1 | -8/+23 |
| * | Allow functions to be marked "implicit return zero" and so mark main(). | John McCall | 2009-07-28 | 1 | -1/+4 |
| * | Make sure to move the comment with the code. | Mike Stump | 2009-07-28 | 1 | -0/+3 |
| * | Add knowledge about _longjmp being noreturn. | Mike Stump | 2009-07-27 | 1 | -2/+2 |
| * | Add builtin knowledge about longjmp being noreturn. Add printing for | Mike Stump | 2009-07-27 | 1 | -1/+3 |
| * | Add noreturn for exit. | Mike Stump | 2009-07-27 | 1 | -0/+3 |
| * | PR3575 - warn on declared variable or function attributes after a definition,... | Ryan Flynn | 2009-07-25 | 1 | -0/+19 |
| * | Add noreturn as a type attribute, handle printing for them and handle | Mike Stump | 2009-07-25 | 1 | -1/+4 |
| * | Semantic checking for main(). | John McCall | 2009-07-25 | 1 | -1/+79 |
| * | Test commit: make a little stub routine for semantic checking of main(). | John McCall | 2009-07-24 | 1 | -0/+6 |
| * | Implement new warning for functions declared 'noreturn' when they fall off th... | Mike Stump | 2009-07-24 | 1 | -15/+39 |
| * | This patch fixes the implementations of the __has_trivial_destructor | Douglas Gregor | 2009-07-23 | 1 | -7/+2 |
| * | Some cleanups suggested by Daniel. | Mike Stump | 2009-07-23 | 1 | -36/+47 |
| * | Clean up the ActOnTag action, so that there is only a single entry | Douglas Gregor | 2009-07-23 | 1 | -1/+1 |
| * | Use llvm::BitVector instead of managing memory by hand. | Daniel Dunbar | 2009-07-23 | 1 | -3/+4 |
| * | Fix case, apparently some people still build on case sensitive | Mike Stump | 2009-07-23 | 1 | -1/+1 |
| * | Add warning for falling off the end of a function that should return a | Mike Stump | 2009-07-22 | 1 | -0/+117 |
| * | Implement support for out-of-line definitions of the class members of class | Douglas Gregor | 2009-07-22 | 1 | -2/+25 |
| * | Calls to Sema::MatchTemplateParametersToScopeSpecifier should not depend on t... | Douglas Gregor | 2009-07-22 | 1 | -2/+5 |
| * | "This patch implements the restrictions on union members detailed in | Douglas Gregor | 2009-07-22 | 1 | -0/+181 |
| * | Implement parsing and semantic analysis for out-of-line definitions of static | Douglas Gregor | 2009-07-22 | 1 | -4/+35 |
| * | Basic parsing and semantic analysis for out-of-line definitions of the | Douglas Gregor | 2009-07-21 | 1 | -11/+12 |
| * | Patch to accomodate Doug's comment on default | Fariborz Jahanian | 2009-07-21 | 1 | -4/+7 |
| * | Diagnose when a destructor uses a unrelated class type as its name. | Fariborz Jahanian | 2009-07-21 | 1 | -0/+10 |
| * | Add the location of the tag keyword into TagDecl. From Enea | Douglas Gregor | 2009-07-21 | 1 | -4/+6 |
| * | When a field is variable-sized or is an array with a negative size, | Douglas Gregor | 2009-07-20 | 1 | -1/+0 |
| * | Improve GCC compatibility by allowing static tentative definitions of | Douglas Gregor | 2009-07-20 | 1 | -16/+19 |
| * | enhance the goto checker to reject jumps across __block variable definitions. | Chris Lattner | 2009-07-19 | 1 | -1/+2 |
| * | Set ObjCMethodDecl's EndLoc to the '}' when it's a definition. | Argyrios Kyrtzidis | 2009-07-18 | 1 | -0/+1 |
| * | Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods | Ted Kremenek | 2009-07-17 | 1 | -3/+3 |
| * | Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), ... | Ted Kremenek | 2009-07-17 | 1 | -3/+3 |
| * | Remove ASTContext::isObjCObjectPointerType(). | Steve Naroff | 2009-07-16 | 1 | -1/+1 |
| * | Add a "TypeSpecStartLoc" to FieldDecl. Patch contributed by Enea Zaffanella. | Steve Naroff | 2009-07-14 | 1 | -6/+10 |
| * | Fixes for a couple of things: | Argyrios Kyrtzidis | 2009-07-14 | 1 | -3/+10 |
| * | Pass the right brace SourceLocation from the Parser to the TagDecls. | Argyrios Kyrtzidis | 2009-07-14 | 1 | -1/+3 |
| * | Fix 5 issues from Chris's feedback on http://llvm.org/viewvc/llvm-project?vie... | Steve Naroff | 2009-07-13 | 1 | -1/+0 |
| * | Implement more of C++0x 'auto'. A variable with an auto type specifier must h... | Anders Carlsson | 2009-07-11 | 1 | -1/+10 |