| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | PR13775: When checking for a tag type being shadowed by some other declaration, | Richard Smith | 2012-09-06 | 1 | -19/+17 |
* | c error recovery. treat an invalid redeclaration | Fariborz Jahanian | 2012-09-05 | 1 | -0/+3 |
* | Changed the remaining dead asserts to llvm_unreachable. | Joao Matos | 2012-09-01 | 1 | -7/+5 |
* | Improved MSVC __interface support by adding first class support for it, inste... | Joao Matos | 2012-08-31 | 1 | -16/+60 |
* | The presence of a user-*declared* constructor makes the default | Douglas Gregor | 2012-08-30 | 1 | -6/+6 |
* | Add -Wduplicate-enum warning. Clang will emit this warning when an implicitly | Richard Trieu | 2012-08-30 | 1 | -0/+177 |
* | CUDA: give static storage class to __shared__ and __constant__ | Peter Collingbourne | 2012-08-28 | 1 | -0/+8 |
* | Fix the CC-matching logic for instance methods in the MS ABI. | John McCall | 2012-08-25 | 1 | -2/+30 |
* | Now that ASTMultiPtr is nothing more than a array reference, make it a Mutabl... | Benjamin Kramer | 2012-08-23 | 1 | -20/+15 |
* | Rip out remnants of move semantic emulation and smart pointers in Sema. | Benjamin Kramer | 2012-08-23 | 1 | -12/+11 |
* | Better wording for reference self-initialization warning. | Hans Wennborg | 2012-08-20 | 1 | -1/+4 |
* | PR41111, PR5925, PR13210: Teach tentative parsing to annotate identifiers and | Richard Smith | 2012-08-18 | 1 | -24/+36 |
* | c: privide deprecated warning when __private_extern__ storage | Fariborz Jahanian | 2012-08-17 | 1 | -1/+3 |
* | Warn about self-initialization of references. | Hans Wennborg | 2012-08-17 | 1 | -6/+9 |
* | Don't do jump-scope checking when code completion is enabled. It's | Douglas Gregor | 2012-08-17 | 1 | -1/+2 |
* | Add support for "type safety" attributes that allow checking that 'void *' | Dmitri Gribenko | 2012-08-17 | 1 | -0/+36 |
* | objective-C++: issue diagnostic when ivar type is | Fariborz Jahanian | 2012-08-16 | 1 | -2/+8 |
* | Patch to warn about __private_extern__ on tentative definitions | Fariborz Jahanian | 2012-08-15 | 1 | -0/+4 |
* | Check local static variables for self reference on initialization. | Richard Trieu | 2012-08-14 | 1 | -1/+1 |
* | Attaching comments to redeclarations: fix wrong assumptions | Dmitri Gribenko | 2012-08-14 | 1 | -1/+3 |
* | Provide isConst/Volatile on CXXMethodDecl. | David Blaikie | 2012-08-10 | 1 | -2/+2 |
* | Implicitly annotate __CFStringMakeConstantString with format_arg(1). | Jordan Rose | 2012-08-08 | 1 | -0/+7 |
* | Don't add attributes for "#pragma pack" and friends to tag declarations which | Eli Friedman | 2012-08-08 | 1 | -3/+4 |
* | Get rid of an early return in Sema::ActOnFields which doesn't make sense anym... | Eli Friedman | 2012-08-08 | 1 | -5/+0 |
* | Objective-C pointer types don't have C-linkage, even though they are | Douglas Gregor | 2012-08-07 | 1 | -1/+2 |
* | For global record types, the self reference checker was called twice, resulting | Richard Trieu | 2012-08-06 | 1 | -1/+4 |
* | PR13527: don't assert if a function is explicitly defaulted when it's already | Richard Smith | 2012-08-06 | 1 | -0/+1 |
* | Fix an assertion failure instantiating a constexpr function from within a -de... | Eli Friedman | 2012-08-01 | 1 | -8/+10 |
* | Comment parsing: add support for \tparam command on all levels. | Dmitri Gribenko | 2012-07-31 | 1 | -0/+1 |
* | Improvements to vexing-parse warnings. Make the no-parameters case more | Richard Smith | 2012-07-30 | 1 | -55/+3 |
* | Use the location of the copy assignment when diagnosing classes that are nont... | Benjamin Kramer | 2012-07-30 | 1 | -4/+3 |
* | Final piece of core issue 1330: delay computing the exception specification of | Richard Smith | 2012-07-27 | 1 | -7/+1 |
* | Disable the warning for missing prototypes for OpenCL kernels. Includes testc... | Tanya Lattner | 2012-07-26 | 1 | -0/+4 |
* | Tweak warning text for returning incomplete type from extern "C" functions. | Hans Wennborg | 2012-07-24 | 1 | -4/+5 |
* | When we have an Objective-C object with non-trivial lifetime in a | Douglas Gregor | 2012-07-23 | 1 | -1/+1 |
* | Reset the layout of an ObjC class if we see an ivar in a category | Eric Christopher | 2012-07-19 | 1 | -0/+17 |
* | Removing a spurious comment, no functionality changes. | Aaron Ballman | 2012-07-19 | 1 | -5/+0 |
* | Relaxed enumeration constant naming rules for scoped enumerators so they no l... | Aaron Ballman | 2012-07-19 | 1 | -6/+12 |
* | Merge visibility from previous decls before looking at visibility pragma. This | Rafael Espindola | 2012-07-17 | 1 | -4/+4 |
* | Record visibility pragmas when we see a tag declaration. We might use it | Rafael Espindola | 2012-07-17 | 1 | -0/+4 |
* | Without this patch clang warns on | Rafael Espindola | 2012-07-15 | 1 | -6/+36 |
* | Make const the argument of getDefinition. | Rafael Espindola | 2012-07-15 | 1 | -4/+4 |
* | Use llvm::APSInt::isSameValue to compare for the same value. | Eric Christopher | 2012-07-15 | 1 | -1/+1 |
* | Provide a special-case diagnostic when two class member functions instantiate | Richard Smith | 2012-07-13 | 1 | -11/+16 |
* | Attaching comments to declarations during parsing: handle more Objective-C de... | Dmitri Gribenko | 2012-07-13 | 1 | -1/+0 |
* | Process #pragma visibility early in the parsing of class definitions. Fixes | Rafael Espindola | 2012-07-12 | 1 | -4/+4 |
* | Enable comment parsing and semantic analysis to emit diagnostics. A few | Dmitri Gribenko | 2012-07-11 | 1 | -0/+54 |
* | Handle #pragma visibility in explicit specializations and enums. | Rafael Espindola | 2012-07-11 | 1 | -6/+4 |
* | Don't process #pragma visibility during instantiation. The visibility of the | Rafael Espindola | 2012-07-11 | 1 | -1/+2 |
* | PR13293: Defer deduction of an auto type with a dependent declarator, such as... | Richard Smith | 2012-07-08 | 1 | -1/+4 |