1. 07fb6be Preserve type source information when substituting into FieldDecls. by John McCall · 15 years ago
  2. eb692e0 Preserve source information for anonymous struct/union declarations. by John McCall · 15 years ago
  3. 8bfd31f Complete code gen for '.*' binary expression for both scalar and aggregates. by Fariborz Jahanian · 15 years ago
  4. cab9882 Fixes a warning. by Fariborz Jahanian · 15 years ago
  5. 54e14c4 When building types from declarators, instead of building two types (one for by John McCall · 15 years ago
  6. 8ee1f3f Always emit error diagnostics when an error occurs within clang_createTranslationUnit() and clang_createTranslationUnitFromSource(). These kind of errors are ones that shouldn't be missed. by Ted Kremenek · 15 years ago
  7. 79162ce Disable Microsoft extensions to fix failure on Windows. by John Thompson · 15 years ago
  8. 467b27b Canonicality is a property of qualified types, not unqualified types. by John McCall · 15 years ago
  9. e78ec31 fix #2 :) by Chris Lattner · 15 years ago
  10. 4a058de fix testcase, thanks Daniel. by Chris Lattner · 15 years ago
  11. 423a4e0 When replacing a template-id expression with a declaration reference expression after overloading completes, make sure to keep the qualifier. Still not ready with that test-case... by Douglas Gregor · 15 years ago
  12. fbcb2b7 Split clang_getCursor() into clang_getCursor() and clang_getCursorWithHint(). by Ted Kremenek · 15 years ago
  13. f17bb74 When building and instantiating a template-id reference expression, such as by Douglas Gregor · 15 years ago
  14. b2b517c Update test; the driver can find a different gcc tool chain directory when by Daniel Dunbar · 15 years ago
  15. 5ed66f7 Try to instantiate templates before doing hierarchy checks in static_cast. Fixes PR5261. by Sebastian Redl · 15 years ago
  16. a9e29aa When a template-id expression refers to a member function template, turn it into an (implicit) member access expression. Fixes PR5220 by Douglas Gregor · 15 years ago
  17. e961afb Refactor our handling of implicit member reference expressions to get most of the logic out of BuildDeclarationNameExpr by Douglas Gregor · 15 years ago
  18. 9fcfe92 fix PR5265: the size of a float3 should be rounded up to its alignment. by Chris Lattner · 15 years ago
  19. 379afec Add some explanatory diagnostics when clang_createTranslationUnitFromSource fails. by Ted Kremenek · 15 years ago
  20. 524e465 Rename: CheckBadDiv->CheckDivZero. by Zhongxing Xu · 15 years ago
  21. d3dd0ae Remove some misguided code. by Mike Stump · 15 years ago
  22. 083c25e Extend out the block descriptor structure for debug information with by Mike Stump · 15 years ago
  23. 080fb19 Driver: Fix thinko in logic for finding gcc's tool chain directory. by Daniel Dunbar · 15 years ago
  24. 139ba86 Enhance 'clang_createTranslationUnitFromSourceFile()' in two ways: by Ted Kremenek · 15 years ago
  25. f51dc64 Code gen for '.*' binary expressions - WIP. by Fariborz Jahanian · 15 years ago
  26. 573d9c3 Don't (directly) call RequireCompleteType with an invalid source location. by Douglas Gregor · 15 years ago
  27. 0298d38 Turn on the preallocation of all BlockDeclRefExprs. by Mike Stump · 15 years ago
  28. 652371a Don't generate pointer types for void or base classes when finding by Douglas Gregor · 15 years ago
  29. 38e1627 Refine collection of BlockDeclRefExprs. WIP. by Mike Stump · 15 years ago
  30. 87f9fd9 Driver: don't produce bogus osx version numbers if no version (aka 0) was specified. by Benjamin Kramer · 15 years ago
  31. 3976295 Expand on code gen. for pointer to data members so it works by Fariborz Jahanian · 15 years ago
  32. 27059c8 Force triple; this test was failing on non-darwin platforms due to different by Benjamin Kramer · 15 years ago
  33. a636299 Code gen for pointer-to-datamember - WIP. by Fariborz Jahanian · 15 years ago
  34. bfbd5df Fix typo. by Mike Stump · 15 years ago
  35. bf5fd78 Refactor. by Mike Stump · 15 years ago
  36. af7b44d Complete out debug info generation for captured __block variables. WIP. by Mike Stump · 15 years ago
  37. 96ad533 Change FixOverloadedFunctionReference to return a (possibly new) expression. Substitute TemplateIdRefExprs with DeclRefExprs. Doug, plz review :) by Anders Carlsson · 15 years ago
  38. 9dc9c37 Downgrade "function declared 'noreturn' should not return" from an by Douglas Gregor · 15 years ago
  39. 6a6de8b Extend clang_getCursor() to take a 'relativeDecl' argument (so speed up searching). Without a 'relativeDecl', the algorithm is n-squared. For example, running the following command on 'Large.m' takes hours without a 'relatvieDecl'. by Steve Naroff · 15 years ago
  40. 727e268 Add AuroraUX ABI Triple in correct place. by Edward O'Callaghan · 15 years ago
  41. 73af2d5 Simplify some code. No functionality change. by Zhongxing Xu · 15 years ago
  42. 49ac3d4 Update checker build. by Ted Kremenek · 15 years ago
  43. b304f77 add helpful methods to TargetInfo for querying builtin integer type properties, by Chris Lattner · 15 years ago
  44. 4a27d70 Improve diagnostics and template instantiation behavior when calling by Douglas Gregor · 15 years ago
  45. e64ef80 hookize wint_t's definition, patch by Edward O'Callaghan (from PR5233). by Chris Lattner · 15 years ago
  46. ea26cb5 Prep work to always preallocate BlockDeclRefExprs so that we can by Mike Stump · 15 years ago
  47. 3c50bfe Revert those last two commits. Beware the treacherous semicolon. by John McCall · 15 years ago
  48. 1dc9acd Preserve type source information when substituting into ParmVarDecls. by John McCall · 15 years ago
  49. 71e2bf9 Preserve type source information when substituting into FieldDecls. by John McCall · 15 years ago
  50. 0a5fa06 Preserve source information when substituting into VarDecls. by John McCall · 15 years ago
  51. cd7ba1c Clone Sema::SubstType for DeclaratorInfos. by John McCall · 15 years ago
  52. 4802a31 Initialize using the base location provided by the derived implementation, by John McCall · 15 years ago
  53. 04c688a Fix 80-col violation. by Mike Stump · 15 years ago
  54. a2becad Rewrite TreeTransform to transform types as DeclaratorInfos rather than as bare by John McCall · 15 years ago
  55. 109de5e Add TypeLocBuilder, an API for incrementally creating TypeLocs. Change by John McCall · 15 years ago
  56. bb833dc Publicize getSigilLoc / setSigilLoc for better metaprogramming. by John McCall · 15 years ago
  57. da9b30e Remove stale comment and tighten code. by Ted Kremenek · 15 years ago
  58. cd6cdeb Add FIXME. by Ted Kremenek · 15 years ago
  59. 0ba497b Use llvm::OwningPtr in CFGBuilder, fixing a leak on an error path. by Ted Kremenek · 15 years ago
  60. 48620ba Code-gen for CXXZeroInitValueExpr AST passed by Fariborz Jahanian · 15 years ago
  61. 7053485 Change ResolveAddressOfOverloadedFunction to support TemplateIdRefExpr. No testcase yet because FixOverloadedFunctionReference needs to be updated too. Doug, plz review. by Anders Carlsson · 15 years ago
  62. 4009297 Fix the 32-bit ABI to return structures with non-trivial copy ctors or dtors indirectly. by Anders Carlsson · 15 years ago
  63. 58f5ec7 Add destructor and cleanup code to LocationContext (fixing some leaks). Along the way, have by Ted Kremenek · 15 years ago
  64. 3a9f03d Updated, we support == and != builtins for member pointers. by Fariborz Jahanian · 15 years ago
  65. 0937097 Changes to reflect more pointer-to-member support. by Fariborz Jahanian · 15 years ago
  66. bf1914b For now, we need to have the llvm type of the block pointer remain as by Mike Stump · 15 years ago
  67. 2357da0 Moved comment to its proper place in my last patch. by Fariborz Jahanian · 15 years ago
  68. 8577c98 Patch implements ranking conversions between member pointers [over.ics.rank] by Fariborz Jahanian · 15 years ago
  69. ca80a5f Do not eagerly cache DITypes because it allows real struct type to be shadowed by forward declared struct type. by Devang Patel · 15 years ago
  70. 74782b0 Driver: If unable to find the gcc tool chain, try the next OS rev. by Daniel Dunbar · 15 years ago
  71. f6a39b7 Encode global variable name in debug info. by Devang Patel · 15 years ago
  72. 2b6c731 Add missing semi-colon. by Daniel Dunbar · 15 years ago
  73. 2b1f291 Changed text of warning in my last patch. by Fariborz Jahanian · 15 years ago
  74. 7ee68bd Bring Darwin into the switch-case statement instead of its own if for readability. by Edward O'Callaghan · 15 years ago
  75. 209a8c2 Issue warning if method body starts with a semicolon. by Fariborz Jahanian · 15 years ago
  76. b4ece63 Add an example to help claify the process/assumptions... by Steve Naroff · 15 years ago
  77. e56b4ba by Steve Naroff · 15 years ago
  78. 73c39ab Remove default argument for ImpCastExprToType. Add appropriate argument by Eli Friedman · 15 years ago
  79. 90556e3 Call 'clear()' in ~RopePieceBTreeLeaf(), decrementing the reference by Ted Kremenek · 15 years ago
  80. 6cd2198 Handle substitutions into the "first qualifier in scope" of a by Douglas Gregor · 15 years ago
  81. 8f99993 Revert 84601. Looks like it was causing failures on some systems. by Ted Kremenek · 15 years ago
  82. 375e69c BumpVectorContext: Use 'unsigned' integer type with PointerIntUnion instead of bool to keep it clear that we are reasoning about an unsigned integer with a single bit. by Ted Kremenek · 15 years ago
  83. 0a026af Implement PR5242: don't desugar a type more than once in a diagnostic. This by Chris Lattner · 15 years ago
  84. b54d8af teach FormatDiagnostic to aggregate previously formatted arguments and by Chris Lattner · 15 years ago
  85. 01fbef6 Fix a reference count imbalance in RewriteRope::MakeRopeString(). by Ted Kremenek · 15 years ago
  86. 9cf9f86 code cleanup, convert if tree to switch etc. by Chris Lattner · 15 years ago
  87. adaaad3 Refine the type of the first parameter to block invoke functions. by Mike Stump · 15 years ago
  88. 9a2c8bb Force triple for test. by Anders Carlsson · 15 years ago
  89. ab22ee9 RegionStore: Use the *default* binding (instead of the *direct* binding) of an Objective-C object by Ted Kremenek · 15 years ago
  90. e973183 retain/release checker: allow 'new', 'copy', 'alloc', 'init' prefix to start before '_' when determining Cocoa fundamental rule. by Ted Kremenek · 15 years ago
  91. 035c46f Builtin candidate minimization for <<=, >>= and the rest. by Fariborz Jahanian · 15 years ago
  92. c46e463 Fix inverted preprocessor guard, and fix the resulting compiler error that was unmasked. by Ted Kremenek · 15 years ago
  93. 1374598 Really fix <rdar://problem/7312058> by adding a 'displayDiagnostics' option to by Ted Kremenek · 15 years ago
  94. dd62b15 Parse a simple-template-id following a '~' when calling a destructor, e.g., by Douglas Gregor · 15 years ago
  95. fc06221 The constructor for ASTUnit now takes a DiagnosticClient*, allowing uses of ASTUnit to specify by Ted Kremenek · 15 years ago
  96. 8621d01 Add the built-in candidate set reduction hueristic by Fariborz Jahanian · 15 years ago
  97. 49358d8 Re-order includes so that the logic involving '#ifdef LLVM_ON_WIN32' appears after the main #includes. The ultimate solution is to just use LLVM-portable methods in llvm/System. by Ted Kremenek · 15 years ago
  98. 3759a03 Copy conversion of an expression to its base class by Fariborz Jahanian · 15 years ago
  99. 86aa0cd Handle emitting the assignment operator when the lhs is a reference. Fixes PR5227. by Anders Carlsson · 15 years ago
  100. da921fd Set the cast kind to CK_NoOp for C-style casts that are really const casts. Fixes PR5248. by Anders Carlsson · 15 years ago