- 369371c More refactoring. by John McCall · 15 years ago
- 75f7c0f Remove a couple of unnecessary uses of IsStandardConversion. by John McCall · 15 years ago
- 5ed9b93 Make sure to check the accessibility of and mark the destructor for the by Eli Friedman · 15 years ago
- ffdb2d2 Add all final overriders to the map. by Anders Carlsson · 15 years ago
- dc32cdf Fix unintentional method call due to false -> pointer conversion; patch by Dimitry Andric! by Daniel Dunbar · 15 years ago
- d1c1d7b typeid() produces type information for the cv-unqualified version of by Douglas Gregor · 15 years ago
- 76bd1f3 Alter the ExternalASTSource interface to permit by-name lookups. PCH continues to by John McCall · 15 years ago
- 681e256 Fix crash in code completion when an ObjCMethodDecl doesn't have an associated @interface. by Ted Kremenek · 15 years ago
- 9a55591 Convert DeclNodes to use TableGen. by Sean Hunt · 15 years ago
- d28dcd7 Teach code-completion for calls to be more careful with a by Douglas Gregor · 15 years ago
- 5ac3bdb Teach code completion to adjust its completion priorities based on the by Douglas Gregor · 15 years ago
- 4e44983 Copy source information for the inner type of an elaborated type; fixes some by John McCall · 15 years ago
- d6b305d Sema: Fix comment, apparently #pragma options align=power is just the same as by Daniel Dunbar · 15 years ago
- 450f793 Sema: Just ignore '#pragma options align=power' for now, this is no worse than by Daniel Dunbar · 15 years ago
- c7e04da A more minimal fix for PR6762. by John McCall · 15 years ago
- 2b7baf0 Roll back r104941. by John McCall · 15 years ago
- 811d0be Disable exception-spec compatibility checking under -fno-exceptions. by John McCall · 15 years ago
- 1d0a585 Add a new attribute on records, __attribute__((adl_invisible)), and define by John McCall · 15 years ago
- fa4edcf Optimize and complete associated-class-and-namespace collection from a type. by John McCall · 15 years ago
- 76ef658 When we complain about a member being inaccessible due to a constraint by Douglas Gregor · 15 years ago
- 9da9cdf When filtering out previous declarations of friend functions, consider the by John McCall · 15 years ago
- 447107d Don't put method bodies into code completions unless code patterns are by Douglas Gregor · 15 years ago
- 4710e5b Do not produce types as valid code completions when we're in an by Douglas Gregor · 15 years ago
- c8bddde Make -code-completion-patterns only cover multi-line code by Douglas Gregor · 15 years ago
- 8e254cf Implement a code-completion hook for the receiver of an Objective-C by Douglas Gregor · 15 years ago
- aeb4a28 Tweak the fix-it for a copy constructor declared to take its argument by Douglas Gregor · 15 years ago
- 6f73914 Parse/Sema: Add support for '#pragma options align=packed', which, it should be by Daniel Dunbar · 15 years ago
- 638e7cf Parse/Sema: Add support for '#pragma options align=native'. by Daniel Dunbar · 15 years ago
- 5613876 Require a complete type when performing the qualified lookup during by John McCall · 15 years ago
- c6082fe Sema: Add initial support for '#pragma options align=mac68k'. by Daniel Dunbar · 15 years ago
- ae2232b Sema: Factor out struct for alignment stack entries. by Daniel Dunbar · 15 years ago
- 9f21f89 Sema: Replace getPragmaPackAlignment with AddAlignmentAttributesForRecord, which by Daniel Dunbar · 15 years ago
- 8a2c92c AST: Rename PragmaPackAttr to MaxFieldAlignmentAttr, which is more accurate. by Daniel Dunbar · 15 years ago
- 613fd67 Sema: Reject '#pragma options align=mac68k' everywhere except i386-apple-darwin. by Daniel Dunbar · 15 years ago
- ea75a82 Sema: Support for #pragma options align={reset,natural}. '#pragma options align' by Daniel Dunbar · 15 years ago
- 12e1313 Introduce priorities into the code-completion results. by Douglas Gregor · 15 years ago
- 2c0a540 Improve on flexible array diagnostics (PR7029). by Fariborz Jahanian · 15 years ago
- 4142ceb Fixes misc. flexible array bugs in c++ (PR7029). by Fariborz Jahanian · 15 years ago
- a0af3b4 Added source order to CXXBaseOrMemberInitializer. by Abramo Bagnara · 15 years ago
- ff2e4f4 When transforming a C++ "new" expression's constructor arguments, drop by Douglas Gregor · 15 years ago
- b90f4b3 Tell the string literal parser when it's not permitted to emit by Douglas Gregor · 15 years ago
- d8e8a58 Only enable code patterns (e.g., try { statements } catch (...) { by Douglas Gregor · 15 years ago
- af7bea5 Make sure to strip off top-level cv-qualifiers as part of a by Douglas Gregor · 15 years ago
- dc84534 Improve code completion in failure cases in two ways: by Douglas Gregor · 15 years ago
- b9aefa7 IRgen/C++: When mark vtables used, make sure to still append to the VTableUse array if we promote a vtable from being just used to having its definition required. This ensures that we properly inform the consumer about whether the vtable is required or not, previously we could fail to do so when the vtable was in the VTableUses array before the decl which marked it as required. by Daniel Dunbar · 15 years ago
- e669f89 Simplify. by Daniel Dunbar · 15 years ago
- 204ce17 Don't complain about VLAs of non-POD types when the array type is by Douglas Gregor · 15 years ago
- 836adf6 Make sure that we instantiate variably modified types, even if they by Douglas Gregor · 15 years ago
- 94a6157 Downgrade deletion of a void* from an error (which is should be) to an by Douglas Gregor · 15 years ago
- ae65f4b An identity conversion is better than any non-identity conversion. Fixes PR7095. by Douglas Gregor · 15 years ago
- 88623ad In C++, one cannot assign from an arithmetic type to an enumeration by Douglas Gregor · 15 years ago
- a481ec4 It turns out that people love using VLAs in templates, too. Weaken our by Douglas Gregor · 15 years ago
- 9ba6af8 Complain about sizeof(overloaded function) rather than crashing. by Douglas Gregor · 15 years ago
- 5a84dec Provide the overloaded functions for UnresolvedLookupExpr and by Douglas Gregor · 15 years ago
- fb2db46 Don't look for a destructor in a dependent type. Fixes PR7198. by Douglas Gregor · 15 years ago
- d900831 When determining whether we can use "this", make sure to look through by Douglas Gregor · 15 years ago
- 0fddb97 Implement support for variable length arrays in C++. VLAs are limited by Douglas Gregor · 15 years ago
- 2d6b0e9 Improve our handling of reference binding for subobjects of by Douglas Gregor · 15 years ago
- d5ab9b0 Improve recovery when we see a dependent template name that is missing by Douglas Gregor · 15 years ago
- 561da7e Clang missing warning about conflicting declaration vs. definition by Fariborz Jahanian · 15 years ago
- 1fd6d44 Improve parser recovery when we encounter a dependent template name by Douglas Gregor · 15 years ago
- b212d9a When instantiating a function declaration within a function template, by Douglas Gregor · 15 years ago
- aec0371 Propagate access specifiers to anonymous union members nested within classes. by John McCall · 15 years ago
- e0d5fe2 Use CanQualType to enforce the use of a canonical type argument to by Douglas Gregor · 15 years ago
- bc365c5 Introduce a method to get from an anonymous struct or union record declaration by John McCall · 15 years ago
- 9901c57 When instantiating anonymous structs/unions within a function, make by Douglas Gregor · 15 years ago
- fe2d379 Fix a crasher in constructor-initializer reordering warnings (PR7179). by Douglas Gregor · 15 years ago
- 0ed5c5d Generate objc_memmove_collectable write-barrier for by Fariborz Jahanian · 15 years ago
- f1860e5 Be sure to apply initializers to members of anonymous structs and unions by John McCall · 15 years ago
- 72a43bb Add a new failure kind, FK_Incomplete, to InitializationSequence, to by Douglas Gregor · 15 years ago
- d2235f6 Reinstate r104117, Chandler Carruth's change that "[provides] a naming by Douglas Gregor · 15 years ago
- e03db98 Added TemplateArgumentListInfo to FunctionTemplateSpecializationInfo. by Abramo Bagnara · 15 years ago
- bd054db Renamed misleading getSourceRange -> getLocalSourceRange and getFullSourceRange -> getSourceRange for TypeLoc. by Abramo Bagnara · 15 years ago
- 8a2ca74 Whoops. by John McCall · 15 years ago
- dae69ef Don't try to check jump scopes in invalid functions. Fixes by John McCall · 15 years ago
- 4e58c25 Remove accidental commit by Douglas Gregor · 15 years ago
- 68dd3ee Various small fixes for construction/destruction of Objective-C++ by Douglas Gregor · 15 years ago
- ea1471e Support implicitly closing on 'this' in a block. Fixed PR7165. by John McCall · 15 years ago
- 8859891 fix the TemplateArgumentList copy constructor to not by Chris Lattner · 15 years ago
- 9cbb4d8 tweak to (hopefully) fix darwin[89] buildbots. Thanks to Doug for the suggested modification. by Jim Grosbach · 15 years ago
- b65a458 When a conditional operator is an rvalue of class type, we need to by Douglas Gregor · 15 years ago
- e4da7a0 Added basic source locations to Elaborated and DependentName types. by Abramo Bagnara · 15 years ago
- 2390a72 Adds support for ObjC++'s GC attribute on declaration of by Fariborz Jahanian · 15 years ago
- bf1cbaf Revert r104117, "Provide a naming class for UnresolvedLookupExprs, even when by Daniel Dunbar · 15 years ago
- 857e918 Add clang support for IBOutletCollection. by Ted Kremenek · 15 years ago
- 4469e8a Revert r104106; it's breaking linking of Boost.Serialization. by Douglas Gregor · 15 years ago
- c3f984f Provide a naming class for UnresolvedLookupExprs, even when occuring on by Chandler Carruth · 15 years ago
- 7d2bcc7 Teach clang to instantiate attributes on more declarations. Fixes PR7102. by Douglas Gregor · 15 years ago
- 26bcf67 Implement C++ builtin operator candidates for vector types. by Douglas Gregor · 15 years ago
- 8069a73 Fix a GCC warning about inline functions not being defined. Until r104081, only by Chandler Carruth · 15 years ago
- 042d6f9 Fix an obvious goof that rjmccall found by inspection. No testcase, suggestions by Chandler Carruth · 15 years ago
- 62ac5d0 Misc. fixes to bring Objetive-C++'s handling of by Fariborz Jahanian · 15 years ago
- ac06a0e Protect isIntegerConstantExpr from seeing type- or value-dependent by Douglas Gregor · 15 years ago
- fb4a543 Implement C++ support for vector and extended vector types. This by Douglas Gregor · 15 years ago
- 23173d7 Teach CursorVisitor about duplicate ObjCPropertyDecls that can arise because of a current by Ted Kremenek · 15 years ago
- f813a2c Add support for Microsoft's __thiscall, from Steven Watanabe! by Douglas Gregor · 15 years ago
- d0785ea Give a slight edge to the context-sensitive keyword 'super' over by Douglas Gregor · 15 years ago
- 91f7ac7 Tweak typo-correction logic a bit regarding "super", so that we by Douglas Gregor · 15 years ago
- d425d2b Permit Objective C object pointers to be const_casted. by John McCall · 15 years ago
- 7381d5c Switch over the tablegen to use much prettier range technology by Sean Hunt · 15 years ago