Age | Commit message (Expand) | Author |
2011-06-23 | Remove weak_import attribute on new declaration. | Fariborz Jahanian |
2011-06-22 | Issue warning if weak_import attribute is added to an already | Fariborz Jahanian |
2011-06-20 | llvm-gcc treats a tentative definition with a previous | Fariborz Jahanian |
2011-06-17 | When an explicit specialization has a storage specifier, error if that | Douglas Gregor |
2011-06-17 | Downgrade the error complaining about presence of a storage class | Douglas Gregor |
2011-06-15 | Automatic Reference Counting. | John McCall |
2011-06-15 | Don't add redundant FormatAttr, ConstAttr, or NoThrowAttr attributes, | Douglas Gregor |
2011-06-14 | fix rdar://9204520 - Accept int(0.85 * 10) as an initializer in a class member | Chris Lattner |
2011-06-13 | Make __gnu_inline__ functions in gnu99 mode work the same way as inline funct... | Eli Friedman |
2011-06-12 | Don't assert on initialized typedef declarations in classes: | Richard Smith |
2011-06-11 | Implement support for C++11 in-class initialization of non-static data members. | Richard Smith |
2011-06-11 | Implement Objective-C Related Result Type semantics. | Douglas Gregor |
2011-06-10 | Made changes to how 'struct'/'class' mismatches are handled in -Wmismatched-t... | Richard Trieu |
2011-06-07 | More coherent diagnostic when a stack variable is | Fariborz Jahanian |
2011-06-06 | Diagnose the condition in C++ [temp.expl.spec]p16 that prohibits | Douglas Gregor |
2011-06-03 | Revert r132544. Accidental commit. I got confused with the Tortoise SVN menu. | Francois Pichet |
2011-06-03 | git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@132544 91177308-0d34-... | Francois Pichet |
2011-06-03 | Correctly revert r131347: function explicit specialization at class scope. | Francois Pichet |
2011-06-02 | Implement -fgnu89-inline. Fixes PR10041. | Rafael Espindola |
2011-06-01 | Microsoft friend acting as a forward declaration; try#2. Now only 2 lines. | Francois Pichet |
2011-05-31 | Revert 132332 (Microsoft friend as a forward declaration), John McCall pointe... | Francois Pichet |
2011-05-31 | Recreate the DeclContext before adding the implicit friend forward declaratio... | Francois Pichet |
2011-05-31 | For compatibility with MSVC, a friend declaration also act as a forward decla... | Francois Pichet |
2011-05-27 | Clean up my changes to jump-diagnostic handling for local variables of | Douglas Gregor |
2011-05-26 | Implement a new warning for when adding a default argument to a method | Sean Hunt |
2011-05-25 | Update our diagnostics to properly account for move operations. | Sean Hunt |
2011-05-25 | Implement a little bit of cleanup and a lot more of the base work | Sean Hunt |
2011-05-24 | Implement a new type node, UnaryTransformType, designed to represent a | Sean Hunt |
2011-05-24 | Implement the initial part of C++0x [expr.const]p2, which specifies | Douglas Gregor |
2011-05-21 | Diagnose the presence of storage-class-specifiers on explicit | Douglas Gregor |
2011-05-21 | Teach Sema::ActOnUninitializedDecl() not to try to interpret when one | Douglas Gregor |
2011-05-20 | Introduce Type::isSignedIntegerOrEnumerationType() and | Douglas Gregor |
2011-05-20 | Fix PR9941 for out-of-line template destructors too. | Sebastian Redl |
2011-05-19 | Fix PR9941 again, this time for templates. | Sebastian Redl |
2011-05-19 | Implement __underlying_type for libc++. | Sean Hunt |
2011-05-19 | Reapply r121528, fixing PR9941 by delaying the exception specification check ... | Sebastian Redl |
2011-05-18 | Revert r121528 as it breaks a simple testcase, which leads to, among | Sean Hunt |
2011-05-18 | Implement implicit exception specifications of destructors. | Sebastian Redl |
2011-05-16 | Implement the new C++0x rules for non-trivial things in unions so that | Sean Hunt |
2011-05-14 | Revert 131347. It asserts if the specialization in within a class template: | Francois Pichet |
2011-05-14 | In Microsoft mode, allow template function explicit specialization at class s... | Francois Pichet |
2011-05-12 | Properly parse the 'default' and 'delete' keywords. | Sean Hunt |
2011-05-12 | Implement deletion of explicitly defaulted default constructors. | Sean Hunt |
2011-05-12 | Fix typo in comment. | Nick Lewycky |
2011-05-11 | Commit some missing changes to the previous patch. | Sean Hunt |
2011-05-11 | Implement implicit deletion of default constructors. | Sean Hunt |
2011-05-11 | In Microsoft mode, allow pure specifier (=0) on inline functions declared at ... | Francois Pichet |
2011-05-10 | Re-do R131114 without breaking code. | Sean Hunt |
2011-05-10 | Reimplement Sema::MatchTemplateParametersToScopeSpecifier() based on | Douglas Gregor |
2011-05-10 | Revert 131114. This fixes PR9884. | Rafael Espindola |