Age | Commit message (Expand) | Author |
2010-02-04 | Allow calling convention attributes to apply to types. Patch by Chip Davis! | John McCall |
2010-02-03 | Don't do an expensive definition check where a cheap 'is this C?' check suffi... | Sebastian Redl |
2010-02-03 | Simplify setting of DeclContext for @catch variable | Fariborz Jahanian |
2010-02-03 | Fix DeclContext of an objective-c @catch variable | Fariborz Jahanian |
2010-02-02 | Implement promotion for enumeration types. | Douglas Gregor |
2010-02-02 | Check for redefinitions in MergeVarDecl. This finds redefinitions of globals ... | Sebastian Redl |
2010-02-02 | Mark dtors for parameter variables and eliminate some redundant type munging. | John McCall |
2010-02-01 | Improve handling of enumerator values for C and C++, including: | Douglas Gregor |
2010-02-01 | In C++, an initializer on a variable doesn't necessarily mean it's the defini... | Sebastian Redl |
2010-01-31 | Add VarDecl::isThisDeclarationADefinition(), which properly encapsulates the ... | Sebastian Redl |
2010-01-27 | Implement access control for overloaded functions. Suppress access control | John McCall |
2010-01-25 | Split libAnalysis into two libraries: libAnalysis and libChecker. | Ted Kremenek |
2010-01-24 | Implement [dcl.fct.spec]p6. | Anders Carlsson |
2010-01-23 | Implement elementary access control. | John McCall |
2010-01-22 | Patch fixes a lookup bug in c++'s anonymous union member | Fariborz Jahanian |
2010-01-22 | Create function, block, and template parameters in the context of the | John McCall |
2010-01-21 | Speed up compilation by avoiding generating exceptional edges from | Mike Stump |
2010-01-21 | Move some recent checking code into SemaChecking instead. | Mike Stump |
2010-01-21 | Avoid instantiating std::sort to save on compiler size. | Mike Stump |
2010-01-21 | When checking for unreachable code, we can trivially avoid checking | Mike Stump |
2010-01-21 | When checking for unreachable blocks, we can trivially avoid extra | Mike Stump |
2010-01-20 | First pass at collecting access-specifier information along inheritance paths. | John McCall |
2010-01-20 | Improve CheckFallThrough analysis in the presense of the new C++ EH | Mike Stump |
2010-01-19 | When looking up enumerator names for redeclaration, use the | Douglas Gregor |
2010-01-16 | Partial fix for PR6022, where we were complaining when a friend | Douglas Gregor |
2010-01-15 | Generalize handling for unreachable code warnings to all binary operators. | Mike Stump |
2010-01-15 | Refine location reporting for unreachable code warnings for comma expressions. | Mike Stump |
2010-01-15 | Refine unreachable warnings. WIP. | Mike Stump |
2010-01-15 | When performing qualified name lookup into the current instantiation, | Douglas Gregor |
2010-01-14 | fix grammaro | Chris Lattner |
2010-01-14 | When qualified lookup into the current instantiation fails (because it | Douglas Gregor |
2010-01-14 | Don't assume a random access iterator, instead just use CFG::iterator. | Mike Stump |
2010-01-14 | Avoid snowballing errors into additional warnings. To do better, we'd | Mike Stump |
2010-01-13 | Reimplement constructor declarator parsing to cope with template-ids | Douglas Gregor |
2010-01-13 | Implement semantic checking for C++ literal operators. | Sean Hunt |
2010-01-13 | Add an unreachable code checker. | Mike Stump |
2010-01-11 | C++0x [dcl.typedef]p4, take 3, where we actually figure out what "that | Douglas Gregor |
2010-01-11 | Use isa<ElaboratedType> rather than getAs<ElaboratedType>, since the | Douglas Gregor |
2010-01-11 | Allow redefinitions of typedef-names within class scope when the type | Douglas Gregor |
2010-01-07 | Whenever we emit a typo-correction diagnostic, also emit a note | Douglas Gregor |
2010-01-06 | Make sure that the key-function computation produces the correct | Douglas Gregor |
2010-01-06 | Make our marking of virtual members functions in a class be | Douglas Gregor |
2010-01-05 | Improve key-function computation for templates. In particular: | Douglas Gregor |
2010-01-04 | Avoid warnings for functions that return a value using MS-style inline | Mike Stump |
2010-01-03 | Implement typo correction for a variety of Objective-C-specific | Douglas Gregor |
2009-12-30 | when making a decl for __builtin_fabsf() make sure to | Chris Lattner |
2009-12-30 | Typo correction for type names when they appear in declarations, e.g., given | Douglas Gregor |
2009-12-30 | Typedefs can be redeclared. That seems like something we should record in | John McCall |
2009-12-24 | Tweak the text of several main() diagnostics and punch a hole specifically for | John McCall |
2009-12-23 | allow the noreturn attribute to be used in class methods | Nuno Lopes |