| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Fixed source range for StaticAssertDecl and LinkageSpecDecl. Fixed source ran... | Abramo Bagnara | 2011-03-08 | 1 | -1/+1 |
* | Fixed source range for all DeclaratorDecl's. | Abramo Bagnara | 2011-03-08 | 1 | -26/+42 |
* | Detect attempts to provide a specialization of a function within a | Douglas Gregor | 2011-03-08 | 1 | -3/+8 |
* | g++ is more permissive regarding flexible arrays. | Argyrios Kyrtzidis | 2011-03-07 | 1 | -5/+12 |
* | Support explicit template specialization and instantiation for members | Douglas Gregor | 2011-03-07 | 1 | -10/+19 |
* | Completed source ranges fixes for all classes inheriting from TypeDecl. | Abramo Bagnara | 2011-03-06 | 1 | -1/+1 |
* | Fixed TypedefDecl and TemplateTypeParameter source range. | Abramo Bagnara | 2011-03-06 | 1 | -0/+1 |
* | Propagate new-style exception spec information to Declarator. | Sebastian Redl | 2011-03-05 | 1 | -2/+2 |
* | When diagnostics are suppressed (e.g., because of code completion), don't tri... | Douglas Gregor | 2011-03-04 | 1 | -1/+2 |
* | Diagnose destructor templates. Fixes PR7904. | Douglas Gregor | 2011-03-04 | 1 | -1/+8 |
* | Fixed source range for FileScopeAsmDecl. Others source range fixes will follow. | Abramo Bagnara | 2011-03-03 | 1 | -2/+5 |
* | Remove cruft | Douglas Gregor | 2011-03-02 | 1 | -9/+0 |
* | Force CaseStmt to store its child statements in source-code order, | Douglas Gregor | 2011-03-02 | 1 | -0/+9 |
* | Support a new InheritableAttr subclass, InheritableParamAttr, which is | John McCall | 2011-03-02 | 1 | -13/+67 |
* | Reinstate the introduction of source-location information for | Douglas Gregor | 2011-03-01 | 1 | -8/+28 |
* | Revert r126748, my second attempt at nested-name-specifier source | Douglas Gregor | 2011-03-01 | 1 | -28/+8 |
* | Reinstate r126737, extending the generation of type-source location | Douglas Gregor | 2011-03-01 | 1 | -8/+28 |
* | Revert r126737, the most recent nested-name-specifier location change, for bu... | Douglas Gregor | 2011-03-01 | 1 | -25/+7 |
* | Push nested-name-specifier source location information into elaborated | Douglas Gregor | 2011-03-01 | 1 | -7/+25 |
* | Teach Sema::CheckTypenameType to use nested-name-specifiers with | Douglas Gregor | 2011-02-28 | 1 | -2/+3 |
* | Use NestedNameSpecifierLoc within out-of-line variables, function, and | Douglas Gregor | 2011-02-25 | 1 | -5/+2 |
* | Issue AnalysisBasedWarnings as part of calling Sema::PopBlockOrFunctionScope(... | Ted Kremenek | 2011-02-23 | 1 | -8/+3 |
* | Fix PR9276: We were missing the checks for auto deducing to different types i... | Richard Smith | 2011-02-23 | 1 | -9/+21 |
* | Tweaks to C++0x deduced auto type support: | Richard Smith | 2011-02-21 | 1 | -12/+15 |
* | Implement the C++0x deduced 'auto' feature. | Richard Smith | 2011-02-20 | 1 | -45/+133 |
* | Remove the Fix-It for "main must return 'int'", which is not always | Douglas Gregor | 2011-02-19 | 1 | -8/+1 |
* | Switch labels over to using normal name lookup, instead of their | Chris Lattner | 2011-02-18 | 1 | -5/+14 |
* | Step #2/N of __label__ support: keep pushing LabelDecl forward, | Chris Lattner | 2011-02-17 | 1 | -4/+10 |
* | Step #1/N of implementing support for __label__: split labels into | Chris Lattner | 2011-02-17 | 1 | -40/+1 |
* | Reject forbidden storage class specifiers in OpenCL. Patch by George Russell! | Peter Collingbourne | 2011-02-11 | 1 | -2/+2 |
* | AST, Sema, Serialization: keep track of cudaConfigureCall | Peter Collingbourne | 2011-02-09 | 1 | -0/+13 |
* | In Sema::CheckShadow, get the DeclContext from the variable that we are checking | Argyrios Kyrtzidis | 2011-02-08 | 1 | -4/+3 |
* | Support for objextive-c++ use of property-dot syntax as receiver | Fariborz Jahanian | 2011-02-08 | 1 | -4/+6 |
* | When the out-of-line definition differs from the declaration in the return type, | Argyrios Kyrtzidis | 2011-02-05 | 1 | -1/+5 |
* | Tweak my fix for PR8748, and update the incorrect PR number in the test case. | Douglas Gregor | 2011-02-04 | 1 | -1/+2 |
* | Tighten up the semantics of default template arguments, per C++0x | Douglas Gregor | 2011-02-04 | 1 | -2/+8 |
* | Implement -Woverloaded-virtual. | Argyrios Kyrtzidis | 2011-02-03 | 1 | -1/+1 |
* | The code trying to assign a typedef to an anonymous tag declaration was | John McCall | 2011-02-01 | 1 | -8/+37 |
* | Don't warn that variables in C++ static member functions shadow fields. Fixes... | Argyrios Kyrtzidis | 2011-01-31 | 1 | -0/+6 |
* | Fix the diagnostic when we are shadowing an external variable and there exist... | Argyrios Kyrtzidis | 2011-01-31 | 1 | -13/+24 |
* | Diagnose if extern local variable is followed by non-extern and vice-versa. | Argyrios Kyrtzidis | 2011-01-31 | 1 | -0/+14 |
* | 'extern' variables in functions don't shadow externs in global scope. Fixes r... | Argyrios Kyrtzidis | 2011-01-31 | 1 | -0/+13 |
* | Rvalue references for *this: parse ref-qualifiers. | Douglas Gregor | 2011-01-26 | 1 | -1/+2 |
* | Disallow function template partial specializations, from Hans | Douglas Gregor | 2011-01-24 | 1 | -2/+4 |
* | Use attributes for all the override control specifiers. | Anders Carlsson | 2011-01-24 | 1 | -2/+4 |
* | Get rid of [[hiding]], [[override]] and [[base_check]]. | Anders Carlsson | 2011-01-23 | 1 | -47/+0 |
* | Null initialize a few variables flagged by | Ted Kremenek | 2011-01-23 | 1 | -1/+1 |
* | Mark classes as final or explicit. Diagnose when a class marked 'final' is us... | Anders Carlsson | 2011-01-22 | 1 | -0/+4 |
* | A member function template cannot be virtual. | Anders Carlsson | 2011-01-22 | 1 | -1/+8 |
* | Sema: process non-inheritable attributes on function declarations early | Peter Collingbourne | 2011-01-21 | 1 | -22/+26 |