Age | Commit message (Expand) | Author |
2011-10-20 | FixIt insert 'static' for anonymous unions at global or namespace scope. | David Blaikie |
2011-10-20 | Add a fixit to remove storage specifiers on anonymous enums. | David Blaikie |
2011-10-19 | 80 cols (one I created in my last commit, plus a bunch of others that were al... | David Blaikie |
2011-10-19 | Don't provide errors for anonymous unions when they're actually anonymous cla... | David Blaikie |
2011-10-19 | -Wc++98-compat: warn on nontrivial types used in unions and anonymous structs. | Richard Smith |
2011-10-19 | Improve the warning for cv-qualifiers on free functions, from Ahmed Charles! | Douglas Gregor |
2011-10-14 | Provide half floating point support as a storage only type. | Anton Korobeynikov |
2011-10-14 | Under ARC, merge the bit corresponding to the ns_returns_retained | Douglas Gregor |
2011-10-14 | When declaring an out-of-line template, attempt to rebuild any types | Douglas Gregor |
2011-10-12 | Add returns_twice to functions that are known to return twice. This implements | Rafael Espindola |
2011-10-11 | [Microsoft] If -fms-compatibility, then downgrade missing typename error to w... | Francois Pichet |
2011-10-11 | Add typo correction for type names. | Kaelyn Uhrain |
2011-10-11 | Clean up DiagnoseInvalidRedeclaration a bit | Kaelyn Uhrain |
2011-10-11 | Move a couple chunks of ActOnFunctionDeclarator to separate functions | Kaelyn Uhrain |
2011-10-11 | Move some bool flags out of function parameter lists. | Kaelyn Uhrain |
2011-10-11 | Only accept a typo correction if it doesn't trigger additional errors | Kaelyn Uhrain |
2011-10-10 | Constant expression evaluation refactoring: | Richard Smith |
2011-10-10 | Give nicer note when a member redeclaration has or lacks 'const' | Kaelyn Uhrain |
2011-10-09 | Push "out-of-line" declarations into scope when their lexical/semantic | Douglas Gregor |
2011-10-09 | A friend template specialization is also dependent if any of its | Douglas Gregor |
2011-10-09 | Diagnose attempts to declare a non-static data member with a | Douglas Gregor |
2011-10-07 | Rename TagDecl::isDefinition -> isCompleteDefinition | John McCall |
2011-10-06 | Implicitly assume that a ObjC category to an unavailable interface is also un... | Argyrios Kyrtzidis |
2011-10-06 | When using an unavailable/deprecated interface Foo inside Foo's interface/imp... | Argyrios Kyrtzidis |
2011-10-06 | Support for C1x _Atomic specifier (see testcase). This is primarily being co... | Eli Friedman |
2011-10-06 | PR11067: A definition of a constexpr static variable doesn't need an initiali... | Richard Smith |
2011-10-06 | OpenCL: add a non-standard extension, cl_clang_storage_class_specifiers, | Peter Collingbourne |
2011-10-03 | objc arc: Suppress certain arc diagnostics on unavailable | Fariborz Jahanian |
2011-10-03 | Allow getting all source locations of selector identifiers in a ObjCMethodDecl. | Argyrios Kyrtzidis |
2011-10-01 | constexpr: semantic checking for constexpr functions and constructors. Based in | Richard Smith |
2011-09-30 | Mark a TagDecl when it is free standing (e.g. "struct foo;") | Argyrios Kyrtzidis |
2011-09-30 | Add explicit attributes to mark functions as having had their | John McCall |
2011-09-30 | Suggest adding 'constexpr' if the GNU extension for in-class initializers for... | Richard Smith |
2011-09-29 | Mark the ExtWarn for in-class initialization of static const float members as... | Richard Smith |
2011-09-29 | In C++0x, static const volatile data members cannot be initialized in-class. | Richard Smith |
2011-09-29 | constexpr: semantic checking for constexpr variables. | Richard Smith |
2011-09-27 | Revert r140589. It was causing failures during llvm compilation: | Bill Wendling |
2011-09-27 | Add typo correction for the type name in C++ "new" statements | Kaelyn Uhrain |
2011-09-25 | Rename Diagnostic to DiagnosticsEngine as per issue 5397 | David Blaikie |
2011-09-23 | Removing a bunch of dead returns/breaks after llvm_unreachables. | David Blaikie |
2011-09-23 | Don't propagate the 'availability' attribute through declaration | Douglas Gregor |
2011-09-23 | Switch assert(0/false) llvm_unreachable. | David Blaikie |
2011-09-22 | ArrayRef-ifying the fields passed to Sema::ActOnFields | David Blaikie |
2011-09-21 | ArrayRef-ifying Function/BlockDecl's setParams | David Blaikie |
2011-09-21 | [microsoft] Move missing typename warning from -fms-extensions to -fms-compat... | Francois Pichet |
2011-09-20 | Remove redundant break statements, and replace asserts with llvm_unreachable | Peter Collingbourne |
2011-09-19 | OpenCL: introduce support for function scope __local variables | Peter Collingbourne |
2011-09-18 | Fix PR10531. Attach an initializer to anonymous unions, since the default con... | Richard Smith |
2011-09-17 | Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear t... | Francois Pichet |
2011-09-14 | Plug an abstraction leak and fix a crasher in DiagnoseInvalidRedeclaration | Kaelyn Uhrain |