1. 1ea9c3d fix a silly fixme. by Chris Lattner · 14 years ago
  2. 0f8c088 Add support for traversing initializer lists (in constructors), which by Craig Silverstein · 14 years ago
  3. 2111c85 Introduce Expr::Classify and Expr::ClassifyModifiable, which determine the classification of an expression under the C++0x taxology (value category). Reimplement isLvalue and isModifiableLvalue using these functions. No regressions in the test suite from this, and my rough performance check doesn't show any regressions either. by Sebastian Redl · 14 years ago
  4. de4bd18 Support CXXPseudoDestructorExpr for PCH. by Argyrios Kyrtzidis · 14 years ago
  5. 12dffcd Support DependentScopeDeclRefExpr for PCH. by Argyrios Kyrtzidis · 14 years ago
  6. 36c76f0 Refactor PCH reading/writing of template arguments passed to expressions. by Argyrios Kyrtzidis · 14 years ago
  7. 17cfded Fix PCH emitting/reading for template arguments that contain expressions. by Argyrios Kyrtzidis · 14 years ago
  8. 926c4b4 Partial fix for PR7267 based on comments by John McCall on an earlier patch. by Chandler Carruth · 14 years ago
  9. eac4a00 Pointer comparisons (and pointer-pointer subtraction). Basically filling in SimpleSValuator::EvalBinOpLL(). by Jordy Rose · 14 years ago
  10. a4d7145 Implement support for -fwrapv, rdar://7221421 by Chris Lattner · 14 years ago
  11. abfe094 Implement support for #pragma message, patch by Michael Spencer! by Chris Lattner · 14 years ago
  12. f683976 Add support for CXXRecordDecl in CFGRecStmtDeclVisitor. by Ted Kremenek · 14 years ago
  13. c4b8e92 clang: Derive version name from LLVM unless specified explicitly. This means by Daniel Dunbar · 14 years ago
  14. 9e9595b Add "checker caching" to GRExprEngine::CheckerVisit to progressively build by Ted Kremenek · 14 years ago
  15. a510767 build: Add a generated Version.inc file instead of duplicating information. by Daniel Dunbar · 14 years ago
  16. b24e199 Support NonTypeTemplateParmDecl for PCH. by Argyrios Kyrtzidis · 14 years ago
  17. 3acad62 Support DependentTemplateSpecializationType and ElaboratedType for PCH. by Argyrios Kyrtzidis · 14 years ago
  18. bd65bb5 Support UnresolvedLookupExpr for PCH. by Argyrios Kyrtzidis · 14 years ago
  19. a77eb08 Support UnresolvedMemberExpr for PCH. by Argyrios Kyrtzidis · 14 years ago
  20. 4ced79f Implement dependent alignment attribute support. This is a bit gross given the by Chandler Carruth · 14 years ago
  21. 8dfbd8b Support a couple more C++ Exprs for PCH. by Argyrios Kyrtzidis · 14 years ago
  22. ccc263b Add 'VisitEndAnalysis' callback to Checker class. This callback is called by GRExprEngine by Ted Kremenek · 14 years ago
  23. f4c4619 Add isArrayType() to CanProxy's forwarders. by Sebastian Redl · 14 years ago
  24. dd41c14 Support C++ class template specializations and partial specializations for PCH. by Argyrios Kyrtzidis · 14 years ago
  25. 94d228d Modify ClassTemplateSpecializationDecl and ClassTemplatePartialSpecializationDecl to allow PCH read/write. by Argyrios Kyrtzidis · 14 years ago
  26. 788b0fd improve altivec vector bool/pixel support, patch by Anton Yartsev by Chris Lattner · 14 years ago
  27. 80aa1cd Patch to provide separate ASTs for multiple ObjC class extension by Fariborz Jahanian · 14 years ago
  28. e4eae6a Support -mios-version-min= as an alias for -miphoneos-version-min=. by Daniel Dunbar · 14 years ago
  29. 8eee119 Change Type::isFloatingType() to reflect the actual definition of a by Douglas Gregor · 14 years ago
  30. 95fc98c Read/write CXXDeleteExpr from/to PCH. by Argyrios Kyrtzidis · 14 years ago
  31. 0e5abbe When we ask for the enumerators of an EnumDecl, make sure we get them even if we have a EnumDecl that is not the definition of the enumeration by Douglas Gregor · 14 years ago
  32. f3a7b7c In C++, allow a declaration of an enum to follow a definition of that by Douglas Gregor · 14 years ago
  33. 44f8c37 -Introduce PCHReader::ReadTemplateArgumentLoc() by Argyrios Kyrtzidis · 14 years ago
  34. d091355 Make it easier to read/write the template part of FunctionDecl. by Argyrios Kyrtzidis · 14 years ago
  35. 7255a2d implement support for -finstrument-functions, patch by Nelson Elhage! by Chris Lattner · 14 years ago
  36. 43dec6b Alter the internal representation of the condition variable in by Douglas Gregor · 14 years ago
  37. 9a14084 Add CXType support for querying the return type of Objective-C methods. This is done by by Ted Kremenek · 14 years ago
  38. dbc4c46 accept and ignore two more gcc warning flags. by Chris Lattner · 14 years ago
  39. 04c3cf3 Add CXType support for FunctionNoProto and FunctionProto types. This includes adding a new by Ted Kremenek · 14 years ago
  40. 5bf1bdc Combine ClassTemplateDecl's PreviousDeclaration with CommonPtr, as in FunctionTemplateDecl. by Argyrios Kyrtzidis · 14 years ago
  41. 4be5430 Implement remaining codegen for NEON, all operations should now work. by Nate Begeman · 14 years ago
  42. b01a552 Support PCH emitting/reading of using declarations. by Argyrios Kyrtzidis · 14 years ago
  43. 8731ca7 Initial support for reading templates from PCH. by Argyrios Kyrtzidis · 14 years ago
  44. 90b715e Initial support for writing templates to PCH. by Argyrios Kyrtzidis · 14 years ago
  45. 4d3a7b0 More AltiVec support. Patch by Anton Yartsev! by Anton Korobeynikov · 14 years ago
  46. b9d5c22 More Sema Check and a test case for init_priority attr. (radar 8076356). by Fariborz Jahanian · 14 years ago
  47. ba0f61c Fold additive constants, and support comparsions of the form $sym+const1 <> const2 by Jordy Rose · 14 years ago
  48. 0a76aae introduce a new CharSourceRange class, and enhance the diagnostics routines by Chris Lattner · 14 years ago
  49. 521f12d Implements Sema part of init_priority(priority) attribute (radar 8076356) - wip. by Fariborz Jahanian · 14 years ago
  50. d2c6490 Merge the "regparm" attribute from a previous declaration of a by Douglas Gregor · 14 years ago
  51. 4ab9289 John called for a less surprising cast by Gabor Greif · 14 years ago
  52. 4c60219 Printf format strings: Added some more tests and fixed some minor bugs. by Tom Care · 14 years ago
  53. 568e598 Rewrite comment to make my intentions slightly more clear. by Sean Hunt · 14 years ago
  54. f057bf7 Change two static variables into instance variables of ASTContext. This allows us to have multiple copies by Ted Kremenek · 14 years ago
  55. c070cc6 Given Decl::isUsed() a flag indicating when to consider the "used" by Douglas Gregor · 14 years ago
  56. f521d6e Bug 7394 - Fixed toString representation of Precisions in format strings. by Tom Care · 14 years ago
  57. 0c05a1b Improves RecursiveASTVisitor: by Zhanyong Wan · 14 years ago
  58. e4ee966 Bug 7377: Fixed several bad printf format string bugs. by Tom Care · 14 years ago
  59. 2390b62 Update CMake build system for ARM NEON generation. by Douglas Gregor · 14 years ago
  60. ea245e0 Some fixes to type-visiting -- a few places where the type-name was by Craig Silverstein · 14 years ago
  61. 170e508 fix some more gcc3.4 constness warnings by Gabor Greif · 14 years ago
  62. 40844a8 use typedef to make hack more transparent and also appease gcc3.4 constness warning by Gabor Greif · 14 years ago
  63. 36d3680 Make sure parens/braces/brackets are correctly balanced. by Argyrios Kyrtzidis · 14 years ago
  64. 1a0c8b9 Include the bug description in the report hash so that we can emit multiple bugs of the same by Ted Kremenek · 14 years ago
  65. a23326b Generate arm_neon.inc in include/clang/Basic, which provides: by Nate Begeman · 14 years ago
  66. 9c3e84f Comment Attr.td so people have a better understanding of what goes on. by Sean Hunt · 14 years ago
  67. 01cb1aa Fix format string checking of '%c' by treating it as an integer conversion. Fixes PR 7391. by Ted Kremenek · 14 years ago
  68. 6ec9deb Fix yet another CMake typo. I'm not quite sure how this succeeded locally now. by Sean Hunt · 14 years ago
  69. 7028a17 Fix a typo in the previous commit I thought I'd fixed, but apparently didn't. by Sean Hunt · 14 years ago
  70. ee6e4b4 Update CMake build for new attribute changes. by Sean Hunt · 14 years ago
  71. 387475d Implement first TD-based usage of attributes. by Sean Hunt · 14 years ago
  72. f13ca06 Make the "extra ';' inside a struct or union" diagnostic more by Douglas Gregor · 14 years ago
  73. d6ab232 When we see a 'template' disambiguator that marks the next identifier by Douglas Gregor · 14 years ago
  74. 1a15dae Fix the recently-added warning about 'typename' and 'template' by Douglas Gregor · 14 years ago
  75. 13927a4 Extend format string type-checking to include '%p'. Fixes remaining cases PR 4468. by Ted Kremenek · 14 years ago
  76. 3e1274f Canonicalize template template parameters when canonicalizing a by Douglas Gregor · 14 years ago
  77. d426662 Make sure result type of objc++ message expression is by Fariborz Jahanian · 14 years ago
  78. 2ac54ec Test commit by adding a blank comment line. by Zhanyong Wan · 14 years ago
  79. 3177aae Frontend: Allow passing -cc1 level arguments to plugins. Patch by Troy Straszheim! by Daniel Dunbar · 14 years ago
  80. 7ccecb7 Driver: Ignore -ffast-math and -f[no-]finite-math-only. by Daniel Dunbar · 14 years ago
  81. a2dd828 Downgrade the error when using a typedef in the nested-name-specifier by Douglas Gregor · 14 years ago
  82. 8e2eab2 Fixed conflict between objc_memmove_collectable builtin by Fariborz Jahanian · 14 years ago
  83. efed5c8 Revert r106099; it broke self-host. by Douglas Gregor · 14 years ago
  84. 6cd8087 Added TemplateTypeParmType::getDecl(). by Abramo Bagnara · 14 years ago
  85. bd409d0 We return Loc where we know. by Zhongxing Xu · 14 years ago
  86. c196095 Add StreamChecker. This checker models and checks stream manipulation functions. by Zhongxing Xu · 14 years ago
  87. 9d3347a Give Type::isIntegralType() an ASTContext parameter, so that it by Douglas Gregor · 14 years ago
  88. 2ade35e Introduce Type::isIntegralOrEnumerationType(), to cover those places by Douglas Gregor · 14 years ago
  89. 06057ce Move CodeGenOptions.h *back* into Frontend. This should have been done when the by Chandler Carruth · 14 years ago
  90. 55bcace Patch adds support for copying of those by Fariborz Jahanian · 14 years ago
  91. 6e5122c Update equality and relationship comparisons of pointers to reflect by Douglas Gregor · 14 years ago
  92. c54539c fix the various buildbot failures by ensuring that tokens are really completely initialized. by Chris Lattner · 14 years ago
  93. 9b414d3 Break Frontend's dependency on Rewrite, Checker and CodeGen in shared library configuration by Daniel Dunbar · 14 years ago
  94. c722ea4 Allocate template parameter lists for out-of-line definitions via the by Douglas Gregor · 14 years ago
  95. 7cf84d6 Implement -fvisibility-inlines-hidden. <rdar://problem/7819834> by Douglas Gregor · 14 years ago
  96. ea3fe7c Add <cstddef> include to get ptrdiff_t, for gcc-4.6; patch by Dimitry Andric. by Daniel Dunbar · 14 years ago
  97. 99e14a0 fix the inline asm diagnostics to emit the error on the primary by Chris Lattner · 14 years ago
  98. 732281d Warn when a 'typename' or a 'template' keyword refers to a by Douglas Gregor · 14 years ago
  99. f78925f Driver: Dissect -Wl, and -Xlinker arguments to remove --no-demangle, which was a by Daniel Dunbar · 14 years ago
  100. 0e10031 Driver: Eliminate uses of Arg::getIndex. by Daniel Dunbar · 14 years ago