1. b321c0c fix typo by Chris Lattner · 14 years ago
  2. bb8fef3 Move CocoaConventions.[h,cpp] from libChecker by Ted Kremenek · 14 years ago
  3. 0a3ed31 Rename several methods/functions in the analyzer by Ted Kremenek · 14 years ago
  4. 2e219b8 Microsoft's __uuidof operator returns a lvalue. Part 2. by Francois Pichet · 14 years ago
  5. a669c53 Add tests checking for unexpanded parameter packs in declarations that by Douglas Gregor · 14 years ago
  6. 781def0 Check for unexpanded parameter packs in non-type template parameter types. by Douglas Gregor · 14 years ago
  7. 6f52675 Check for unexpanded parameter packs in default arguments. by Douglas Gregor · 14 years ago
  8. 892697d Start migration of static analyzer to using the by Ted Kremenek · 14 years ago
  9. a31040f Check for unexpanded parameter packs within variable initializers. by Douglas Gregor · 14 years ago
  10. 6ccab97 Check for unexpanded parameter packs in friend declarations. by Douglas Gregor · 14 years ago
  11. 8b1aba4 Improve diagnostics when property being looked up by Fariborz Jahanian · 14 years ago
  12. 56c0458 Check for unexpanded parameter packs in using declarations. As a by Douglas Gregor · 14 years ago
  13. 0c9e479 Check for unexpanded parameter packs in enumeration types and enumerators. by Douglas Gregor · 14 years ago
  14. 399ad97 Check for unexpanded parameter packs in static assertion expressions. by Douglas Gregor · 14 years ago
  15. 46e392a Implement builtins for Neon half-precision float conversions. by Bob Wilson · 14 years ago
  16. e186269 Check for unexpanded parameter packs in various kinds of by Douglas Gregor · 14 years ago
  17. c11e1d7 Teach the RecursiveASTVisitor to traverse the type-location by Douglas Gregor · 14 years ago
  18. 9ef7589 Introduce a RecursiveASTVisitor subclass that finds all unexpanded by Douglas Gregor · 14 years ago
  19. 0827408 Fix diagnostic pragmas. by Argyrios Kyrtzidis · 14 years ago
  20. dda0c0d Fix gcc warning: 'clang::ASTStmtReader' is already a friend of 'clang::OverloadExpr' by Nico Weber · 14 years ago
  21. bfdcdc8 Set the "implicitly inline" bit on a method as soon as we see a definition by John McCall · 14 years ago
  22. bebbe0d Variadic templates: extend the Expr class with a bit that specifies by Douglas Gregor · 14 years ago
  23. 723df24 Added missing IgnoreParens(). by Abramo Bagnara · 14 years ago
  24. 373920b Improve some comments, shrink FunctionType::ExtInfo, and fix a bug found by John McCall · 14 years ago
  25. e23cf43 Restore r121752 without modification. by John McCall · 14 years ago
  26. 5bfe232 Pull out r121752 in case it's causing the selfhost breakage. by John McCall · 14 years ago
  27. 0e88aa7 Factor out most of the extra state in a FunctionProtoType into a separate by John McCall · 14 years ago
  28. d093722 Variadic templates: extend Type, NestedNameSpecifier, TemplateName, by Douglas Gregor · 14 years ago
  29. 140a2bd Skip ParenType on function instantiations. by Abramo Bagnara · 14 years ago
  30. e7f8504 Fix PR8774 by restricting when hasInit returns true. Previously, it by Chandler Carruth · 14 years ago
  31. 7b38198 Basic, Sema: add support for CUDA launch_bounds attribute by Peter Collingbourne · 14 years ago
  32. 2c2c8dd Sema: diagnose kernel functions with non-void return type by Peter Collingbourne · 14 years ago
  33. e005d19 Introduce ObjCMessageExpr::getReceiverRange() to get the source range of the receiver. by Argyrios Kyrtzidis · 14 years ago
  34. f40f0d5 Keep the source location of the selector in ObjCMessageExpr. by Argyrios Kyrtzidis · 14 years ago
  35. 5e36210 Make RecursiveASTVisitor traverse a ObjCMethodDecl. by Argyrios Kyrtzidis · 14 years ago
  36. 5aea91b Silence a GCC unitialized-value warning by Douglas Gregor · 14 years ago
  37. 4472fc6 Replace two QualType::getTypePtrOrNull() calls with by Douglas Gregor · 14 years ago
  38. 1ab55e9 Eliminate the branching in QualType::getTypePtr() by providing a by Douglas Gregor · 14 years ago
  39. 075f8f1 Added ParenType type node. by Abramo Bagnara · 14 years ago
  40. c3c0af3 Silence GCC warning about comparisons between enumerators of different types by Douglas Gregor · 14 years ago
  41. 49f4e1c It's kindof silly that ExtQuals has an ASTContext&, and we can use that by John McCall · 14 years ago
  42. 55270e4 Update ExtQuals comment to reflect the expansion of the fast qualifiers by Douglas Gregor · 14 years ago
  43. 34e80e9 Optimize memory usage of FunctionProtoType on MSVC. by John McCall · 14 years ago
  44. f7616b9 Move the "volatile" bit into QualType's "fast" qualifier set, by Douglas Gregor · 14 years ago
  45. 90f1450 Treat visibility on an enclosing namespace as a non-explicit source of by John McCall · 14 years ago
  46. ad616eb Added remaining objective-c library builtins (as in gcc) to by Fariborz Jahanian · 14 years ago
  47. c3dcdc1 Add Neon vreinterpret intrinsics for half-float (f16) types. by Bob Wilson · 14 years ago
  48. 2427dbf Fix type of last vector operand of Neon quad-register multiple-lane intrinsics. by Bob Wilson · 14 years ago
  49. c9ccad3 Fix the names of the v[r]addhn and v[r]subhn Neon intrinsics. by Bob Wilson · 14 years ago
  50. 8f15094 When an "inline" declaration was followed by a definition not marked by Douglas Gregor · 14 years ago
  51. c66b516 Add missing "s32" and "u32" variants of Neon vzip intrinsic. Radar 8446277. by Bob Wilson · 14 years ago
  52. 327ce70 Add missing "p16" type variants for the Neon VREV32 intrinsics. Radar 8446277. by Bob Wilson · 14 years ago
  53. d954504 A typename specifier can end up referring to a unresolved using by Douglas Gregor · 14 years ago
  54. eca099b Add new libclang hooks for CXCursorSet, a by Ted Kremenek · 14 years ago
  55. db3d4d0 Stop using builtins for the "_lane" variants of saturating multiply intrinsics. by Bob Wilson · 14 years ago
  56. f187237 Remove the TypesCompatibleExprClass AST node. Merge its functionality into BinaryTypeTraitExpr. by Francois Pichet · 14 years ago
  57. 259461d Put the "'typename' occurs outside of a template" and "'template' by Douglas Gregor · 14 years ago
  58. a4cc799 Stop using clang builtins for Neon vabdl and vabal intrinsics. by Bob Wilson · 14 years ago
  59. a8b988f Stop using clang builtins for Neon vaba intrinsics. by Bob Wilson · 14 years ago
  60. c46233d Fix BinaryOperator dispatch for RecursiveASTVisitor, from Benoit Perrot! by Douglas Gregor · 14 years ago
  61. f203344 Stop using clang builtins for Neon vadd[lw] and vsub[lw] intrinsics. by Bob Wilson · 14 years ago
  62. 4064127 Stop using clang builtins for Neon vmlal{_n,_lane} and vmlsl{_n,_lane}. by Bob Wilson · 14 years ago
  63. cf55652 Stop using a clang builtin for Neon vdup_lane intrinsics. by Bob Wilson · 14 years ago
  64. c92b772 Stop using a clang builtin for Neon vmull_lane intrinsic. by Bob Wilson · 14 years ago
  65. 468acf9 Implement vmull and vmull_n intrinsics without using clang builtins. by Bob Wilson · 14 years ago
  66. 954e0c7 Implement AST import for Objective-C property implementations by Douglas Gregor · 14 years ago
  67. f5fe292 Fix PR8720 by printing an error message with a substring that the gcc testsuite searches for. by Rafael Espindola · 14 years ago
  68. 9407444 Add Neon vreinterpret intrinsics. Radar 8681774. by Bob Wilson · 14 years ago
  69. 0d3f3ff Make whitespace more consistent. by Bob Wilson · 14 years ago
  70. 6f18fca Kill FullExpr, as it was not, in fact, used anywhere in the code base. by John McCall · 14 years ago
  71. 7ee90d0 Fix compile error: comma at end of enumerator list. by Francois Pichet · 14 years ago
  72. 6ad6f28 Type traits intrinsic implementation: __is_base_of(T, U) by Francois Pichet · 14 years ago
  73. 409fa9a Split out a function to do lvalue conversion on objects; this is basically by John McCall · 14 years ago
  74. 381d34e Re-implement caching for the linkage calculation of declarations. by Douglas Gregor · 14 years ago
  75. f0b0ccc Use the source location of the parameter, when it makes sense, for diagnostics in HandleCleanupAttr. by Argyrios Kyrtzidis · 14 years ago
  76. b5f35ba Revert r120808, my previous implementation of caching for the linkage by Douglas Gregor · 14 years ago
  77. 894aed9 Un-templatetize this method. It's definition is out of line in the .cpp file, by Chandler Carruth · 14 years ago
  78. 4765fa0 Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical by John McCall · 14 years ago
  79. 0074b48 Mark SVal constructors 'explicit'. by Ted Kremenek · 14 years ago
  80. 4658463 Rename Environment::LookupExpr() to by Ted Kremenek · 14 years ago
  81. d7365e1 Remove unused method GRState::LookupExpr(). by Ted Kremenek · 14 years ago
  82. 00eb3f9 More anonymous struct/union redesign. This one deals with anonymous field used in a constructor initializer list: by Francois Pichet · 14 years ago
  83. ec276bf Silence "comparison between signed and unsigned integer expressions" warnings. by Benjamin Kramer · 14 years ago
  84. 0e800c9 Remove some defensive calls to EmitLoadOfPropertyRefLValue that shouldn't by John McCall · 14 years ago
  85. f6a1648 Although we currently have explicit lvalue-to-rvalue conversions, they're by John McCall · 14 years ago
  86. 91252d1 Implement -cl-std= by Peter Collingbourne · 14 years ago
  87. 4400cb8 Implement -cl-mad-enable by Peter Collingbourne · 14 years ago
  88. f084082 Implement -cl-fast-relaxed-math by Peter Collingbourne · 14 years ago
  89. 5f67e13 Implement -cl-unsafe-math-optimizations by Peter Collingbourne · 14 years ago
  90. 5d729a3 Implement -cl-finite-math-only by Peter Collingbourne · 14 years ago
  91. 0982136 Implement -cl-single-precision-constant by Peter Collingbourne · 14 years ago
  92. 61e0786 Implement -cl-opt-disable by Peter Collingbourne · 14 years ago
  93. 53c92be Introduce CompilerInvocation::setLangDefaults function by Peter Collingbourne · 14 years ago
  94. 640ccf0 Minor refactoring; have BugReport::getRanges return a pair of iterator, no functionality change. by Argyrios Kyrtzidis · 14 years ago
  95. 74b2756 Diagnose when accessing property in a class method and by Fariborz Jahanian · 14 years ago
  96. a88cefd Added struct/class syntactic info for c++0x scoped enum. by Abramo Bagnara · 14 years ago
  97. 4740dab Add missing vext_f32 and vextq_f32 Neon intrinsics (Radar 8592601). by Bob Wilson · 14 years ago
  98. 953d513 Add support for vmul_p8 Neon intrinsic. Radar 8446141. by Bob Wilson · 14 years ago
  99. 2357207 Implement caching for the linkage and visibility calculations of declarations. by Douglas Gregor · 14 years ago
  100. 96bfa62 Add a separate name field to the Neon intrinsic table. by Bob Wilson · 14 years ago