| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | Check a few more kinds of declarations that make a scope. | Eli Friedman | 2009-02-28 | 1 | -0/+3 |
| * | Start of checking for gotos which jump to an illegal destination. | Eli Friedman | 2009-02-28 | 1 | -2/+87 |
| * | Fix minor memory leak. Add comment describing what we need to do for | Eli Friedman | 2009-02-27 | 1 | -7/+16 |
| * | Create a new TypeNodes.def file that enumerates all of the types, | Douglas Gregor | 2009-02-26 | 1 | -8/+8 |
| * | Zap the Sema constant initializer checking code that we aren't using | Eli Friedman | 2009-02-26 | 1 | -527/+2 |
| * | Fix for PR3663/3669: use TryToFixInvalidVariablyModifiedType for | Eli Friedman | 2009-02-26 | 1 | -33/+37 |
| * | C99 DR #316 implies that the function parameter types that are known | Douglas Gregor | 2009-02-25 | 1 | -1/+7 |
| * | move some initialization checking code from SemaDecl.cpp | Chris Lattner | 2009-02-24 | 1 | -141/+0 |
| * | first wave of fixes for @encode sema support. This is part of PR3648. | Chris Lattner | 2009-02-24 | 1 | -2/+2 |
| * | some minor cleanups, handle ObjCEncodeExpr in a couple places. | Chris Lattner | 2009-02-24 | 1 | -6/+6 |
| * | When we're declaring an object or function with linkage, teach name | Douglas Gregor | 2009-02-24 | 1 | -22/+27 |
| * | Extend the implicit declaration and checking against out-of-scope | Douglas Gregor | 2009-02-24 | 1 | -103/+161 |
| * | In C, when we see a function declaration within a local scope, export | Douglas Gregor | 2009-02-24 | 1 | -0/+52 |
| * | Improve merging of function declarations. Specifically: | Douglas Gregor | 2009-02-24 | 1 | -25/+115 |
| * | fix rdar://6611778, a redefinition of an interface was causing an | Chris Lattner | 2009-02-23 | 1 | -4/+11 |
| * | Throw the switch to exclusively use Evaluate (along with the small | Eli Friedman | 2009-02-22 | 1 | -0/+6 |
| * | Warn on use of __weak attribute on local | Fariborz Jahanian | 2009-02-21 | 1 | -0/+5 |
| * | Slight tweak to last commit: make sure to copy CVR qualifiers for fixed | Eli Friedman | 2009-02-21 | 1 | -1/+3 |
| * | Re-fix r65140 correctly. | Eli Friedman | 2009-02-21 | 1 | -10/+69 |
| * | Fix <rdar://problem/6500554> missing objc error message. | Steve Naroff | 2009-02-20 | 1 | -4/+9 |
| * | add plumbing to get ASTContext& down to allocation/deallocation points in Obj... | Chris Lattner | 2009-02-20 | 1 | -2/+4 |
| * | move the @implementation ivar list to being an ObjCList, which prevents | Chris Lattner | 2009-02-20 | 1 | -8/+5 |
| * | Always try to fold array sizes, and warn if we could fold something that isn'... | Anders Carlsson | 2009-02-20 | 1 | -44/+3 |
| * | Fix <rdar://problem/6586239> bitfield constraints not enforced (for ObjC) | Steve Naroff | 2009-02-20 | 1 | -6/+3 |
| * | Suppress constant initializer checking when the declaration isn't valid. | Eli Friedman | 2009-02-20 | 1 | -2/+4 |
| * | GetTypeForDeclarator can return null on error now, handle this. | Chris Lattner | 2009-02-19 | 1 | -1/+4 |
| * | Emit the correct diagnostics when we constant fold an array size to a negativ... | Anders Carlsson | 2009-02-19 | 1 | -3/+13 |
| * | Couple of helpers for objc's gc attributes. | Fariborz Jahanian | 2009-02-19 | 1 | -1/+1 |
| * | Return true on errors, return true on errors, return true on errors | Douglas Gregor | 2009-02-18 | 1 | -1/+1 |
| * | Downgrade complaints about calling unavailable functions to a warning | Douglas Gregor | 2009-02-18 | 1 | -6/+15 |
| * | Make warn-weak-field.m test pass again. | Fariborz Jahanian | 2009-02-18 | 1 | -0/+2 |
| * | Allow "overloadable" functions in C to be declared as variadic without | Douglas Gregor | 2009-02-18 | 1 | -1/+2 |
| * | Don't allow calls to functions marked "unavailable". There's more work | Douglas Gregor | 2009-02-18 | 1 | -3/+19 |
| * | Remove one more redundant dyn_cast. | Argyrios Kyrtzidis | 2009-02-17 | 1 | -3/+0 |
| * | Remove some redundant Decl -> Decl castings. | Argyrios Kyrtzidis | 2009-02-17 | 1 | -3/+2 |
| * | All Decls have a DeclContext now, hooray! Fans of consistency rejoice. | Argyrios Kyrtzidis | 2009-02-17 | 1 | -1/+1 |
| * | Remove the error about redefining library functions. It's causing too | Douglas Gregor | 2009-02-17 | 1 | -5/+3 |
| * | Static variables and functions won't collide with standard library | Douglas Gregor | 2009-02-17 | 1 | -1/+3 |
| * | Make PragmaPackStack be a private class in SemaAttr and make its | Chris Lattner | 2009-02-17 | 1 | -1/+1 |
| * | move attribute(packed) sema support out of SemaDecl into a new SemaAttr.cpp f... | Chris Lattner | 2009-02-17 | 1 | -94/+0 |
| * | Support IRgen of sqrt -> llvm.sqrt, pow -> llvm.pow. | Daniel Dunbar | 2009-02-16 | 1 | -0/+9 |
| * | diagnose uses of deprecated typenames and tags. | Chris Lattner | 2009-02-16 | 1 | -15/+29 |
| * | Supply the header corresponding to a library builtin as a separate argument t... | Douglas Gregor | 2009-02-16 | 1 | -1/+1 |
| * | When merging from a function with a prototype to a function without a | Douglas Gregor | 2009-02-16 | 1 | -5/+26 |
| * | Remove FindIvarDeclaration. Use lookupInstanceVariable is is functionally | Fariborz Jahanian | 2009-02-16 | 1 | -1/+1 |
| * | add assertion | Chris Lattner | 2009-02-16 | 1 | -0/+1 |
| * | When a function with a prototype is redeclared without a prototype, | Douglas Gregor | 2009-02-16 | 1 | -0/+17 |
| * | Adopt a more principled approach to invalid declarations: | Douglas Gregor | 2009-02-16 | 1 | -59/+84 |
| * | lots of trailing whitespace | Chris Lattner | 2009-02-15 | 1 | -1/+1 |
| * | Refactor the deprecated and unavailable checks into a new | Chris Lattner | 2009-02-15 | 1 | -3/+2 |