1. e8519c3 Add ms_abi and sysv_abi attribute handling. by Charles Davis · 11 years ago
  2. 4e1a82c Adjust clang for change to APFloat::toString. by Eli Friedman · 11 years ago
  3. 023b220 Removed useless default branch of switch statement. by Serge Pavlov · 11 years ago
  4. 8ed2f3a Change return type of Sema::DiagnoseAmbiguousLookup from bool to void. by Serge Pavlov · 11 years ago
  5. 4a97b8e Remove Inheritable/NonInheritable flags from ProcessDeclAttributes. They don't by Richard Smith · 11 years ago
  6. 9d57b8d Sema: Subst type default template args earlier by David Majnemer · 11 years ago
  7. 1951323 Mode is now handled as a non-inheritable attribute, and CUDADevice & CUDAHost are now handled as inheritable attributes. In all three cases, this makes the processing behavior more consistent with the declared behavior in Attr.td. by Aaron Ballman · 11 years ago
  8. 3f93d4c Improve error for assignment to incomplete class. by Eli Friedman · 11 years ago
  9. ef07203 Delete CC_Default and use the target default CC everywhere by Reid Kleckner · 11 years ago
  10. 1806239 Cleanup of OpaquePtr. No functionality changes. by Serge Pavlov · 11 years ago
  11. fc21813 Simplify a bit. by Rafael Espindola · 11 years ago
  12. 60c444d Since r179585, __declspec(property) has gotten special treatment as an attribute where it is not processed as part of the typical Sema attribute functionality. Specifying this attribute as being "ignored" because there is no sema handler for it as a Decl attribute, and no AST node generated for it. by Aaron Ballman · 11 years ago
  13. 15b2674 Handle predefined expression for a captured statement by Wei Pan · 11 years ago
  14. 63f25e6 Add a FIXME. by Richard Smith · 11 years ago
  15. 8d2a5ea A clean-up pass, exploring the unification of traversals of class, variable and function templates. by Larisse Voufo · 11 years ago
  16. 344472e Use pop_back_val() instead of both back() and pop_back(). by Robert Wilhelm · 11 years ago
  17. d1282ec Sema: Properly support Microsoft-mode template arguments by David Majnemer · 11 years ago
  18. 37fd27d Remove SequenceNumber from class/variable template partial specializations. by Richard Smith · 11 years ago
  19. 5fdd207 Update to consumed analysis. by DeLesley Hutchins · 11 years ago
  20. 152b4e4 Revert "Implement a rudimentary form of generic lambdas." by Manuel Klimek · 11 years ago
  21. 28cc16a Revert "Remove some unused variables identified by Juergen Ributzka *I need to turn on this warning in Visual C++ - sorry!*" by Manuel Klimek · 11 years ago
  22. 21adb0c const'ify Sema::ActOnCXXTryBlock by by Robert Wilhelm · 11 years ago
  23. ebf5535 Remove some unused variables identified by Juergen Ributzka *I need to turn on this warning in Visual C++ - sorry!* by Faisal Vali · 11 years ago
  24. ecb5819 Implement a rudimentary form of generic lambdas. by Faisal Vali · 11 years ago
  25. 567f917 Refactor for clarity and simplicity. by Larisse Voufo · 11 years ago
  26. 04592e7 Improve support for static data member templates. This revision still has at least one bug, as it does not respect the variable template specialization hierarchy well. by Larisse Voufo · 11 years ago
  27. 2414697 Split isFromMainFile into two functions. by Eli Friedman · 11 years ago
  28. 34776d4 Updated the consumed analysis warnings to use a more standardized diagnostic. by Aaron Ballman · 11 years ago
  29. 0d28fdf Removed unnecessary asserts. by Aaron Ballman · 11 years ago
  30. f96df62 Fix the end sourcelocation of the call expression in a member access when by Nick Lewycky · 11 years ago
  31. 28bdbf0 Sema: Use the right type for PredefinedExpr when it's in a lambda. by Benjamin Kramer · 11 years ago
  32. 37aa0f7 If we find an error in the range expression in a range-based for loop, and the by Richard Smith · 11 years ago
  33. d67679d During typo correction, check for an exact match in an unimported module. If we by Richard Smith · 11 years ago
  34. 48a2a3a Handle init lists and _Atomic fields. by Eli Friedman · 11 years ago
  35. 556ef7f PR16727: don't try to evaluate a potentially value-dependent expression when by Richard Smith · 11 years ago
  36. c895f4d const'ify Sema::ActOnCompoundStmt by by Robert Wilhelm · 11 years ago
  37. ecf119c Omit llvm:: before makeArrayRef. We have using directive in this file. by Robert Wilhelm · 11 years ago
  38. 2f6a73c Sema: Remove dead code in CheckTemplateArgumentAddressOfObjectOrFunction by David Majnemer · 11 years ago
  39. ab4e0c0 Fix a use-after-free found in libclang when doing code completion. The by Chandler Carruth · 11 years ago
  40. 2d67097 Refactor all diagnosing of TypoCorrections through a common function, in by Richard Smith · 11 years ago
  41. 29535ba Don't reject attribute used in an "extern const" variable definition. by Rafael Espindola · 11 years ago
  42. 360d23e Parse: Do not 'HandleTopLevelDecl' on templated functions. by David Majnemer · 11 years ago
  43. 2f835ca Don't allow unary negation on scoped enums. by Eli Friedman · 11 years ago
  44. cdd4b78 Properly track l-paren of a CXXFucntionalCastExpr. by Eli Friedman · 11 years ago
  45. 41594c5 ObjectiveC [Sema]. This patch makes sure that all inherited by Fariborz Jahanian · 11 years ago
  46. 37e849a PR16875: The return type of a dependent function type is visible when it's by Richard Smith · 11 years ago
  47. 933c66b Bug fix: note diagnosis on expression narrowing should say "variable template" instead of "static data member" when appropriate by Larisse Voufo · 11 years ago
  48. 4a91989 Bug fix: disallow a variable template to be redeclared as a non-templated variable by Larisse Voufo · 11 years ago
  49. 72a36a1 Don't produce duplicate notes if we have deduction failure notes when resolving by Richard Smith · 11 years ago
  50. dc25f8c ObjectiveC [QoI] issue warning if an element of an nsarray by Fariborz Jahanian · 11 years ago
  51. c99b90e sizeof(void) etc. should be a hard error in C++. by Eli Friedman · 11 years ago
  52. dd9459f Fix implementation of C11 6.2.7/4 and C++11 [dcl.array]p3: by Richard Smith · 11 years ago
  53. 439d665 variable templates updated for PCH serialization... Still working on test cases... by Larisse Voufo · 11 years ago
  54. 039970a AnalysisBasedWarnings.cpp:: Prune "\param VariableName", possibly copypasto, in comments. [-Wdocumentation] by NAKAMURA Takumi · 11 years ago
  55. 2d84f6b Remove Sema includes from Analysis code to fix layering by Reid Kleckner · 11 years ago
  56. 5d937b3 Add hooks to ExternalSemaSource for after-the-fact diagnosis of by Kaelyn Uhrain · 11 years ago
  57. a03c5ee Fix crash w/BlockDecl and invalid qualified decl. by Eli Friedman · 11 years ago
  58. df7bef0 Patch by Chris Wailes <chris.wailes@gmail.com>. Reviewed by delesley, dblaikie. by DeLesley Hutchins · 11 years ago
  59. 70571f4 Add hooks for typo correction to ExternalSemaSource, courtesy of Luke Zarko. by Kaelyn Uhrain · 11 years ago
  60. 30d2375 Omit llvm:: before StringRef and SmallString. We have using directive in include/clang/Basic/LLVM.h. by Robert Wilhelm · 11 years ago
  61. e7205c0 Omit llvm:: before SmallVector and SmallVectorImpl. We have using directive in include/clang/Basic/LLVM.h. by Robert Wilhelm · 11 years ago
  62. 29a46e6 Fix to PR16225 (Assert-on-invalid: isa<LabelDecl>(D) && "declaration not instantiated in this scope") by Serge Pavlov · 11 years ago
  63. c1cef08 Added source locs for angled parentheses in class/var template partial specs. by Enea Zaffanella · 11 years ago
  64. f68af64 Expose LambdaIntroducer::DefaultLoc in the AST's LambdaExpr. by James Dennett · 11 years ago
  65. 7ea491c Fix for PR16570: when comparing two function pointers, discard qualifiers when by Richard Trieu · 11 years ago
  66. 834c058 Omit llvm:: before ArrayRef, as we have using llvm::ArrayRef in include/clang/Basic/LLVM.h. by Robert Wilhelm · 11 years ago
  67. 541a28f Put back a microoptimization with a comment to make it more obvious. by Benjamin Kramer · 11 years ago
  68. bb0ed29 Sema: Assertion failure during CodeGen in CodeGenModule::EmitUuidofInitializer by David Majnemer · 11 years ago
  69. 4e9686b Implement [class.friend]p11's special name lookup rules for friend declarations by Richard Smith · 11 years ago
  70. 47abb25 Remove unused variable. No functionality change. by Benjamin Kramer · 11 years ago
  71. fbbdc5d Emit an error for enum increments and decrements in C++ mode. Fixes PR16394. by Richard Trieu · 11 years ago
  72. ac32d90 PR9992: Serialize and deserialize the token sequence for a function template in by Richard Smith · 11 years ago
  73. a7b8797 Eliminate CXXConstructorDecl::IsImplicitlyDefined. by Jordan Rose · 11 years ago
  74. acdbbc7 Add a new warning to -Wloop-analysis to detect suspicious increments or by Richard Trieu · 11 years ago
  75. 2521813 A bit of clean up based on peer's feedback... by Larisse Voufo · 11 years ago
  76. 3151b7c Fixing commit r187768: Moved diagnosis of forward declarations of variable templates from Parser to Sema. by Larisse Voufo · 11 years ago
  77. 1a81e74 Fix for PR16570: when comparing two function pointers, discard qualifiers when by Richard Trieu · 11 years ago
  78. 06935f3 Moved diagnosis of forward declarations of variable templates from Parser to Sema. by Larisse Voufo · 11 years ago
  79. cec70f5 SemaTemplateInstantiateDecl.cpp: Suppress a warning. [-Wunused-variable] by NAKAMURA Takumi · 11 years ago
  80. ef4579c Started implementing variable templates. Top level declarations should be fully supported, up to some limitations documented as FIXMEs or TODO. Static data member templates work very partially. Static data member templates of class templates need particular attention... by Larisse Voufo · 11 years ago
  81. 056ec12 Add option to disable module loading. by Daniel Jasper · 11 years ago
  82. 0e21897 Implement C++'s restrictions on the type of an expression passed to a vararg by Richard Smith · 11 years ago
  83. 8b051ce Sema: Don't assume a nested name specifier holds a type by David Majnemer · 11 years ago
  84. 6f4f808 Add support for passing -1 to __builtin_shufflevector to signify an undefined element value to match IR capabilities. by Craig Topper · 11 years ago
  85. e2d20c9 Remove rather oddly merged logic from AArch64 commit. by Tim Northover · 11 years ago
  86. b61c294 Fix indentation. No functional change. by Craig Topper · 11 years ago
  87. b793f0d AArch64: initial NEON support by Tim Northover · 11 years ago
  88. 789d82a Check dynamic_cast is not used with -fno-rtti, unless it is a noop or can be resolved statically. by Arnaud A. de Grandmaison · 11 years ago
  89. 576a9af Sema: Diagnose explicitly bound unresolved member expressions decaying into pointers to function type by David Majnemer · 11 years ago
  90. 3d672e4 ObjectiveC ARC: finishing off issuing error when by Fariborz Jahanian · 11 years ago
  91. 01ad048 ObjectiveC ARC: Do not issue bridge cast diagnostic when by Fariborz Jahanian · 11 years ago
  92. c66e7e9 Fix declaring class template methods with an attributed typedef by Reid Kleckner · 11 years ago
  93. c14e6dd A few small cleanups to r187504. Thanks to dblaikie for the assist. by Kaelyn Uhrain · 11 years ago
  94. 650c605 ObjectiveC arc: minor refactoring in my last patch by Fariborz Jahanian · 11 years ago
  95. 2651b7a ObjectiveC arc: Introduce a new initialization kind by Fariborz Jahanian · 11 years ago
  96. baaeb85 Improve the diagnostic experience, including adding recovery, for by Kaelyn Uhrain · 11 years ago
  97. b316dc5 ObjectiveC arc: Move check for type conversions in arc by Fariborz Jahanian · 11 years ago
  98. 8931078 Fix a crasher than manifests when typo correction suggests a function template. by Richard Trieu · 11 years ago
  99. 750f73a err_attribute_missing_parameter_name has been replaced by err_attribute_argument_type. by Aaron Ballman · 11 years ago
  100. 9f939f7 Replacing err_attribute_argument_not_int with err_attribute_not_type_attr by Aaron Ballman · 11 years ago