1. efed5c8 Revert r106099; it broke self-host. by Douglas Gregor · 14 years ago
  2. 6cd8087 Added TemplateTypeParmType::getDecl(). by Abramo Bagnara · 14 years ago
  3. 52a0275 Fix the build. Using declarations should not be considering when looking by John McCall · 14 years ago
  4. ad00b77 Fix a point of semantics with using declaration hiding: method templates by John McCall · 14 years ago
  5. 9d3347a Give Type::isIntegralType() an ASTContext parameter, so that it by Douglas Gregor · 14 years ago
  6. 2ade35e Introduce Type::isIntegralOrEnumerationType(), to cover those places by Douglas Gregor · 14 years ago
  7. ff2d05f Workaround a possible VS C++ bug. by Fariborz Jahanian · 14 years ago
  8. 55bcace Patch adds support for copying of those by Fariborz Jahanian · 14 years ago
  9. 6e5122c Update equality and relationship comparisons of pointers to reflect by Douglas Gregor · 14 years ago
  10. 410a1da Remove a completely useless and utterly incorrect assertion. by Douglas Gregor · 14 years ago
  11. 9b30b26 Teach code completion not to ignore data members when performing code by Douglas Gregor · 14 years ago
  12. 7dc480f tidy up by Chris Lattner · 14 years ago
  13. c722ea4 Allocate template parameter lists for out-of-line definitions via the by Douglas Gregor · 14 years ago
  14. 7cf84d6 Implement -fvisibility-inlines-hidden. <rdar://problem/7819834> by Douglas Gregor · 14 years ago
  15. 43ad182 When analyzing for member self-assignment, don't attempt to dereference null by Nick Lewycky · 14 years ago
  16. 732281d Warn when a 'typename' or a 'template' keyword refers to a by Douglas Gregor · 14 years ago
  17. 61eecf5 Add some missing shifts by Nate Begeman · 14 years ago
  18. 71d74bc TemplateSpecializationType's isCurrentInstantiation bit can be derived by John McCall · 14 years ago
  19. 0d15c53 Most of NEON sema checking & fix to polynomial type detection by Nate Begeman · 14 years ago
  20. 9b93488 Added template parameters info for out-of-line definitions of class template methods. by Abramo Bagnara · 14 years ago
  21. c98971d Don't omit class explicit instantiation from AST. by Abramo Bagnara · 14 years ago
  22. 6907fbe When deciding whether an expression has the boolean nature, don't look through by John McCall · 14 years ago
  23. 81e317a Allow pseudo-destructors to be called on qualified pointers. Patch by by John McCall · 14 years ago
  24. ddb0ce7 Conversions from Objective C object pointers to bool are "pointer conversions by John McCall · 14 years ago
  25. 258de30 Fix the 64-bit build. operator<<(DiagnosticBuilder, long) doesn't exist, so by Jeffrey Yasskin · 14 years ago
  26. 5edbdcc Add an option -fshow-overloads=best|all to limit the number of overload by Jeffrey Yasskin · 14 years ago
  27. 3350095 Split DependentNameType into two types. DependentNameType represents the by John McCall · 14 years ago
  28. e3e210c Another chunk of the new RecursiveASTVisitor implementation: switch the return by Chandler Carruth · 14 years ago
  29. 7378012 Commit my WIP on constexpr support. This commit: an XFAILed test and treating constexpr as a top-level const. by Sebastian Redl · 14 years ago
  30. 515ddd8 Fix two typos in comments. by Sebastian Redl · 14 years ago
  31. d92f7a2 Added inherited info to template and non-type arguments of templates. by Abramo Bagnara · 14 years ago
  32. dfc35e3 Major redesign of the RecursiveASTVisitor. This implements the majority of the by Chandler Carruth · 14 years ago
  33. 3bfc5f4 Added FixIt support to printf format string checking. by Tom Care · 14 years ago
  34. 5a57efd Tweak our handling of the notion of a standard conversion sequence by Douglas Gregor · 14 years ago
  35. 1c2a88c Implement transpose/zip/unzip & table lookup. by Nate Begeman · 14 years ago
  36. e1aa9f3 When referring to a tag that was previously declared only as a friend, by Douglas Gregor · 14 years ago
  37. ccd4713 A built-in overload candidate is consider a non-template function when by Douglas Gregor · 14 years ago
  38. c4dec1c Makefiles: Set Clang CPP compiler flags in a single location, instead of scattered throughout the project Makefiles. by Daniel Dunbar · 14 years ago
  39. afed099 Makefile: Switch Clang Makefiles to always include the top-level Clang Makefile. by Daniel Dunbar · 14 years ago
  40. d64fdd0 Warn about comparisons between arrays and improve self-comparison by Douglas Gregor · 14 years ago
  41. d7c7338 Fixes a typo which prevented proper code gen. for by Fariborz Jahanian · 14 years ago
  42. d7a9597 Implement a warning when converting the literal 'false' to a by Douglas Gregor · 14 years ago
  43. 26a3142 Since the enum values for each arch's builtins overlap, it is not appropriate to check them when compiling or other archs. Fixes a problem where compiling for NEON would use x86 sema rules. by Nate Begeman · 14 years ago
  44. 37b6a57 Extend __builtin_shufflevector to expose the full power of the llvm shufflevector instruction. This means it can now be used for vector truncation and concatenation. This will be used for the ARM NEON implementation. by Nate Begeman · 14 years ago
  45. e2a901a When using property-dot assignment syntax to call a setter method, by Fariborz Jahanian · 14 years ago
  46. 310b1c4 Use MaybeCreateCXXExprWithTemporaries for potential destruction of by Fariborz Jahanian · 14 years ago
  47. 57d12fd PR7245: Make binding a reference to a temporary without a usable copy by Jeffrey Yasskin · 14 years ago
  48. 2865474 Simplify the methods for creating a pointer, reference, member-pointer, by John McCall · 14 years ago
  49. 6206d53 Added AccessSpecDecl node. by Abramo Bagnara · 14 years ago
  50. 21d07e4 Add an extension to avoid an error when a global template has the same name as by Jeffrey Yasskin · 14 years ago
  51. bf1a028 Alter the interface of GetTypeForDeclarator to return a TypeSourceInfo*. by John McCall · 14 years ago
  52. 52647c6 When deciding whether reinterpret_cast casts away constness we need to look at array qualifiers. Fixes rdar://problem/8018292. by Anders Carlsson · 14 years ago
  53. 59da45a Build AST for copy-construction of copied-in by Fariborz Jahanian · 14 years ago
  54. 83a230c Remember type source information for Objective C property declarations. by John McCall · 14 years ago
  55. c71a491 Preserve more information from a block's original function declarator, if one by John McCall · 14 years ago
  56. 82dc009 Restructure how we interpret block-literal declarators. Correctly handle by John McCall · 14 years ago
  57. ea7b488 Don't insert in lexical context implicit definitions of static member instances. by Abramo Bagnara · 14 years ago
  58. a417b87 When checking for equality of template parameter lists, a template by Douglas Gregor · 14 years ago
  59. 4bde1e1 Delay checking for mutable const fields until we're checking the field. by John McCall · 14 years ago
  60. 369371c More refactoring. by John McCall · 14 years ago
  61. 75f7c0f Remove a couple of unnecessary uses of IsStandardConversion. by John McCall · 14 years ago
  62. 5ed9b93 Make sure to check the accessibility of and mark the destructor for the by Eli Friedman · 14 years ago
  63. ffdb2d2 Add all final overriders to the map. by Anders Carlsson · 14 years ago
  64. dc32cdf Fix unintentional method call due to false -> pointer conversion; patch by Dimitry Andric! by Daniel Dunbar · 14 years ago
  65. d1c1d7b typeid() produces type information for the cv-unqualified version of by Douglas Gregor · 14 years ago
  66. 76bd1f3 Alter the ExternalASTSource interface to permit by-name lookups. PCH continues to by John McCall · 14 years ago
  67. 681e256 Fix crash in code completion when an ObjCMethodDecl doesn't have an associated @interface. by Ted Kremenek · 14 years ago
  68. 9a55591 Convert DeclNodes to use TableGen. by Sean Hunt · 14 years ago
  69. d28dcd7 Teach code-completion for calls to be more careful with a by Douglas Gregor · 14 years ago
  70. 5ac3bdb Teach code completion to adjust its completion priorities based on the by Douglas Gregor · 14 years ago
  71. 4e44983 Copy source information for the inner type of an elaborated type; fixes some by John McCall · 14 years ago
  72. d6b305d Sema: Fix comment, apparently #pragma options align=power is just the same as by Daniel Dunbar · 14 years ago
  73. 450f793 Sema: Just ignore '#pragma options align=power' for now, this is no worse than by Daniel Dunbar · 14 years ago
  74. c7e04da A more minimal fix for PR6762. by John McCall · 14 years ago
  75. 2b7baf0 Roll back r104941. by John McCall · 14 years ago
  76. 811d0be Disable exception-spec compatibility checking under -fno-exceptions. by John McCall · 14 years ago
  77. 1d0a585 Add a new attribute on records, __attribute__((adl_invisible)), and define by John McCall · 14 years ago
  78. fa4edcf Optimize and complete associated-class-and-namespace collection from a type. by John McCall · 14 years ago
  79. 76ef658 When we complain about a member being inaccessible due to a constraint by Douglas Gregor · 14 years ago
  80. 9da9cdf When filtering out previous declarations of friend functions, consider the by John McCall · 14 years ago
  81. 447107d Don't put method bodies into code completions unless code patterns are by Douglas Gregor · 14 years ago
  82. 4710e5b Do not produce types as valid code completions when we're in an by Douglas Gregor · 14 years ago
  83. c8bddde Make -code-completion-patterns only cover multi-line code by Douglas Gregor · 14 years ago
  84. 8e254cf Implement a code-completion hook for the receiver of an Objective-C by Douglas Gregor · 14 years ago
  85. aeb4a28 Tweak the fix-it for a copy constructor declared to take its argument by Douglas Gregor · 14 years ago
  86. 6f73914 Parse/Sema: Add support for '#pragma options align=packed', which, it should be by Daniel Dunbar · 14 years ago
  87. 638e7cf Parse/Sema: Add support for '#pragma options align=native'. by Daniel Dunbar · 14 years ago
  88. 5613876 Require a complete type when performing the qualified lookup during by John McCall · 14 years ago
  89. c6082fe Sema: Add initial support for '#pragma options align=mac68k'. by Daniel Dunbar · 14 years ago
  90. ae2232b Sema: Factor out struct for alignment stack entries. by Daniel Dunbar · 14 years ago
  91. 9f21f89 Sema: Replace getPragmaPackAlignment with AddAlignmentAttributesForRecord, which by Daniel Dunbar · 14 years ago
  92. 8a2c92c AST: Rename PragmaPackAttr to MaxFieldAlignmentAttr, which is more accurate. by Daniel Dunbar · 14 years ago
  93. 613fd67 Sema: Reject '#pragma options align=mac68k' everywhere except i386-apple-darwin. by Daniel Dunbar · 14 years ago
  94. ea75a82 Sema: Support for #pragma options align={reset,natural}. '#pragma options align' by Daniel Dunbar · 14 years ago
  95. 12e1313 Introduce priorities into the code-completion results. by Douglas Gregor · 14 years ago
  96. 2c0a540 Improve on flexible array diagnostics (PR7029). by Fariborz Jahanian · 14 years ago
  97. 4142ceb Fixes misc. flexible array bugs in c++ (PR7029). by Fariborz Jahanian · 14 years ago
  98. a0af3b4 Added source order to CXXBaseOrMemberInitializer. by Abramo Bagnara · 14 years ago
  99. ff2e4f4 When transforming a C++ "new" expression's constructor arguments, drop by Douglas Gregor · 14 years ago
  100. b90f4b3 Tell the string literal parser when it's not permitted to emit by Douglas Gregor · 14 years ago