1. 4eeebc4 MemoryBuffer API update. by Michael J. Spencer · 15 years ago
  2. 66cdf26 Update for LLVM API change. by Daniel Dunbar · 15 years ago
  3. 0762bfd Fix a regression I caused in r121930. It turns out that by Douglas Gregor · 15 years ago
  4. a31040f Check for unexpanded parameter packs within variable initializers. by Douglas Gregor · 15 years ago
  5. 6ccab97 Check for unexpanded parameter packs in friend declarations. by Douglas Gregor · 15 years ago
  6. 8b1aba4 Improve diagnostics when property being looked up by Fariborz Jahanian · 15 years ago
  7. 56c0458 Check for unexpanded parameter packs in using declarations. As a by Douglas Gregor · 15 years ago
  8. 0c9e479 Check for unexpanded parameter packs in enumeration types and enumerators. by Douglas Gregor · 15 years ago
  9. 399ad97 Check for unexpanded parameter packs in static assertion expressions. by Douglas Gregor · 15 years ago
  10. 46e392a Implement builtins for Neon half-precision float conversions. by Bob Wilson · 15 years ago
  11. 7504966 ivars craeted for explicit @synthesize and those by Fariborz Jahanian · 15 years ago
  12. e186269 Check for unexpanded parameter packs in various kinds of by Douglas Gregor · 15 years ago
  13. c11e1d7 Teach the RecursiveASTVisitor to traverse the type-location by Douglas Gregor · 15 years ago
  14. cff163e Test that all of the relevant types properly compute the "contains by Douglas Gregor · 15 years ago
  15. 9ef7589 Introduce a RecursiveASTVisitor subclass that finds all unexpanded by Douglas Gregor · 15 years ago
  16. 0827408 Fix diagnostic pragmas. by Argyrios Kyrtzidis · 15 years ago
  17. c463335 Move the work-in-progress implementation of variadic templates to its own file in Sema. No functionality change. by Douglas Gregor · 15 years ago
  18. 028d397 Reorganize LookupMemberExpr for clarity and to make the obvious fast paths by John McCall · 15 years ago
  19. de43632 __attribute__((nonnull)) can apply to reference-to-pointer by Douglas Gregor · 15 years ago
  20. fb7b363 Sema: have BuildExpressionFromIntegralTemplateArgument produce well-formed IntegerLiterals by Peter Collingbourne · 15 years ago
  21. f24e54a Silence GCC warning about control reaching the end of the function and explicitly mark that all cases are handled. by Chandler Carruth · 15 years ago
  22. dda0c0d Fix gcc warning: 'clang::ASTStmtReader' is already a friend of 'clang::OverloadExpr' by Nico Weber · 15 years ago
  23. 5e3c67b Sundry missing lvalue-to-rvalue conversions. Also leave a TODO for the vital by John McCall · 15 years ago
  24. bfdcdc8 Set the "implicitly inline" bit on a method as soon as we see a definition by John McCall · 15 years ago
  25. bebbe0d Variadic templates: extend the Expr class with a bit that specifies by Douglas Gregor · 15 years ago
  26. 8cc246c Function types are compatible (in the C sense) if their regparms are identical. by John McCall · 15 years ago
  27. 723df24 Added missing IgnoreParens(). by Abramo Bagnara · 15 years ago
  28. 8786da7 Rewrite ComplexExprEvaluator::VisitCastExpr to use cast kinds, and fix by John McCall · 15 years ago
  29. ed37836 Minor fix for clang-completion-mode, from Dve Abrahams by Douglas Gregor · 15 years ago
  30. 373920b Improve some comments, shrink FunctionType::ExtInfo, and fix a bug found by John McCall · 15 years ago
  31. d3b227d Fix documentation typo, from nobled. by Douglas Gregor · 15 years ago
  32. e23cf43 Restore r121752 without modification. by John McCall · 15 years ago
  33. 5bfe232 Pull out r121752 in case it's causing the selfhost breakage. by John McCall · 15 years ago
  34. 0e88aa7 Factor out most of the extra state in a FunctionProtoType into a separate by John McCall · 15 years ago
  35. 54eeba7 Generalize this test to work without instruction names. by Dan Gohman · 15 years ago
  36. 2ea7e73 Implement CodeGen support for the may_alias attribute. by Dan Gohman · 15 years ago
  37. d093722 Variadic templates: extend Type, NestedNameSpecifier, TemplateName, by Douglas Gregor · 15 years ago
  38. 140a2bd Skip ParenType on function instantiations. by Abramo Bagnara · 15 years ago
  39. 1192fff Remove a type that got reduced away from this test case but not actually deleted. by Chandler Carruth · 15 years ago
  40. e7f8504 Fix PR8774 by restricting when hasInit returns true. Previously, it by Chandler Carruth · 15 years ago
  41. 6a57746 Reduce the number of builtin operator overload candidates added in certain by Chandler Carruth · 15 years ago
  42. 7b38198 Basic, Sema: add support for CUDA launch_bounds attribute by Peter Collingbourne · 15 years ago
  43. 2c2c8dd Sema: diagnose kernel functions with non-void return type by Peter Collingbourne · 15 years ago
  44. aee543a Move the functionality to mark all vtables of key functions as used within by Chandler Carruth · 15 years ago
  45. a48fa4b Change MBlaze target to have the same description string as its LLVM equivalent. by Wesley Peck · 15 years ago
  46. 6d69558 Finish cleaning up the static utility code for adding builtin operator overload by Chandler Carruth · 15 years ago
  47. 38ca8d1 Clean up the helpers used to compute the usual arithmetic conversions' result by Chandler Carruth · 15 years ago
  48. 3c69dc4 Add a comment to a helper function. by Chandler Carruth · 15 years ago
  49. 7b80b4b Sink the logic to suppress builtin operator overloads in the presence of by Chandler Carruth · 15 years ago
  50. abb7184 Reorder the cases in the switch to be more logically grouped (to my mind). If by Chandler Carruth · 15 years ago
  51. c140946 Remove the final goto from this switch making it explict which overload set is by Chandler Carruth · 15 years ago
  52. 32fe0d0 Fold away completely identical code with simple fallthrough. by Chandler Carruth · 15 years ago
  53. fe62274 Move and copy function calls around to remove the indirection through gotos by Chandler Carruth · 15 years ago
  54. daf55d3 Simplify the flow through the switch by explicitly listing the added overloads by Chandler Carruth · 15 years ago
  55. 6df868e Fix 80-column violations and reflowing some code to facilitate those fixes. by Chandler Carruth · 15 years ago
  56. 3a0f3ef Begin the refactoring of how builtin operators are added to the overload by Chandler Carruth · 15 years ago
  57. c78f684 Enhance my implementation of //rdar ://8747333 in r121597 to allow by Fariborz Jahanian · 15 years ago
  58. 96fc8e4 Improved complex constants evaluation. by Abramo Bagnara · 15 years ago
  59. 88f5e9b Any property declared in a class extension might have user by Fariborz Jahanian · 15 years ago
  60. 141e489 Add missing switch case for the quad-register version of the Neon vmul builtin. by Bob Wilson · 15 years ago
  61. a0eb23b Fix clang crashes on Neon vld[234]_dup intrinsics with 64-bit element types. by Bob Wilson · 15 years ago
  62. e005d19 Introduce ObjCMessageExpr::getReceiverRange() to get the source range of the receiver. by Argyrios Kyrtzidis · 15 years ago
  63. f40f0d5 Keep the source location of the selector in ObjCMessageExpr. by Argyrios Kyrtzidis · 15 years ago
  64. 5e36210 Make RecursiveASTVisitor traverse a ObjCMethodDecl. by Argyrios Kyrtzidis · 15 years ago
  65. 42499f9 Do not assert on shifts of Neon polynomial types. by Bob Wilson · 15 years ago
  66. 3922ed0 Silence a few more uninitialized-value warnings by Douglas Gregor · 15 years ago
  67. 5aea91b Silence a GCC unitialized-value warning by Douglas Gregor · 15 years ago
  68. 4472fc6 Replace two QualType::getTypePtrOrNull() calls with by Douglas Gregor · 15 years ago
  69. 9f6f6a1 Do not substitute template types if template has dependent context by Peter Collingbourne · 15 years ago
  70. 9913d6e Fix a compiler warning. by Fariborz Jahanian · 15 years ago
  71. 1ab55e9 Eliminate the branching in QualType::getTypePtr() by providing a by Douglas Gregor · 15 years ago
  72. 075f8f1 Added ParenType type node. by Abramo Bagnara · 15 years ago
  73. c3c0af3 Silence GCC warning about comparisons between enumerators of different types by Douglas Gregor · 15 years ago
  74. 7e36988 Another dummy commit to check GIT mirroring by Anton Korobeynikov · 15 years ago
  75. 49f4e1c It's kindof silly that ExtQuals has an ASTContext&, and we can use that by John McCall · 15 years ago
  76. 55270e4 Update ExtQuals comment to reflect the expansion of the fast qualifiers by Douglas Gregor · 15 years ago
  77. 34e80e9 Optimize memory usage of FunctionProtoType on MSVC. by John McCall · 15 years ago
  78. f7616b9 Move the "volatile" bit into QualType's "fast" qualifier set, by Douglas Gregor · 15 years ago
  79. eb0eb49 Use TypeAlignment constant rather than fixed alignment of 8 by Douglas Gregor · 15 years ago
  80. 7872d48 Fixed version of 121435. by Rafael Espindola · 15 years ago
  81. 85fe156 In clang_getCursor(), don't override a preprocessing cursor within by Douglas Gregor · 15 years ago
  82. 30daefc Add missing switch case to handle builtin for Neon vqnegq. by Bob Wilson · 15 years ago
  83. c1fa01b LLVM's intrinsics for vpaddl and vpadal have 2 overloaded types. by Bob Wilson · 15 years ago
  84. afb3fa9 Revert my previous patch to make the valgrind bots happy. by Rafael Espindola · 15 years ago
  85. 90f1450 Treat visibility on an enclosing namespace as a non-explicit source of by John McCall · 15 years ago
  86. f0d9d8b Add dependency to "make clang-test check-all". by NAKAMURA Takumi · 15 years ago
  87. 3bc3c6d And more gzip goodness for clang. by Eric Christopher · 15 years ago
  88. db67e2f Bind the result of a property fetch to a temporary. by John McCall · 15 years ago
  89. 0aefbd8 Extend libclang debugging output for clang_getCursor() to show the definition we found by Douglas Gregor · 15 years ago
  90. d185035 Neon compare absolute LLVM intrinsics are not overloaded. PR8484. by Bob Wilson · 15 years ago
  91. ad616eb Added remaining objective-c library builtins (as in gcc) to by Fariborz Jahanian · 15 years ago
  92. db2b42f Fix another obscure corner layout case. by Argyrios Kyrtzidis · 15 years ago
  93. 4cf8b1e Update clang for the API changes in the cfi patch. by Rafael Espindola · 15 years ago
  94. c3dcdc1 Add Neon vreinterpret intrinsics for half-float (f16) types. by Bob Wilson · 15 years ago
  95. 25bb03b Don't crash when code-completing after "#include <". It would be far by Douglas Gregor · 15 years ago
  96. bfe5788 Refactored/cleanedup ActOnFunctionDeclarator by Fariborz Jahanian · 15 years ago
  97. 7344921 Eliminate duplicate code completions for properties. by Douglas Gregor · 15 years ago
  98. 70c2335 Don't walk the translation unit context to produce protocol names when by Douglas Gregor · 15 years ago
  99. d64f4c1 Gather cached code completions after the first reparse, not after the by Douglas Gregor · 15 years ago
  100. 4d936ec Update test. by Devang Patel · 15 years ago