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