1. 16484af StringRefize ArgList construction of ArgStrings. by Daniel Dunbar · 15 years ago
  2. 0aebc81 If a cast expression needs either a conversion function or a constructor to be called, generate implicit child expressions that call them. by Anders Carlsson · 15 years ago
  3. 0dcb9a3 Push bound architecture name into TranslateArgs. by Daniel Dunbar · 15 years ago
  4. 4954018 Push bound architecture name into Compilation::getArgsForToolChain. by Daniel Dunbar · 15 years ago
  5. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  6. 79d39f9 Remove tab characters. by Mike Stump · 15 years ago
  7. 3b6afbb Initial stab at implement dependent member references to member by Douglas Gregor · 15 years ago
  8. 36df290 Validate arguments to -arch. by Daniel Dunbar · 15 years ago
  9. d7502d0 Rename HostInfo::getToolChain to HostInfo::CreateToolChain, and don't recreate by Daniel Dunbar · 15 years ago
  10. a6046be Fix ShouldUseClangCompiler to use llvm::Triple. by Daniel Dunbar · 15 years ago
  11. 9830046 Make sure to access APValue's data via a char array (rather than by Douglas Gregor · 15 years ago
  12. ac423ba Fixes a regression in generating objc's GC API by Fariborz Jahanian · 15 years ago
  13. 3a082d8 Vastly improve PredefinedExpr output, both in Sema and CodeGen. Patch by Sam Weinig! by Anders Carlsson · 15 years ago
  14. 6b2becf Support templateids in friend declarations. Fixes bug 4859. by John McCall · 15 years ago
  15. d74d414 Handle variadic constructors better. Share code between BuildCXXConstructExpr and BuildCXXTemporaryObjectExpr. by Anders Carlsson · 15 years ago
  16. bcb11d0 Clean up the CXXConstructExpr constructor, add Arg getters. by Anders Carlsson · 15 years ago
  17. d851b37 Check that the destination type of a static_cast expression is a complete type. by Anders Carlsson · 15 years ago
  18. 458fb10 Replace some instances of std::string with StringRefs. by Benjamin Kramer · 15 years ago
  19. 2191b20 Start emitting ElaboratedTypes in C++ mode. Support the effort in various by John McCall · 15 years ago
  20. 25cae7f Use a separate diagnostic for default function argument expressions. by Anders Carlsson · 15 years ago
  21. 248072a Refactor builtin function evaluation code into its own function. by Zhongxing Xu · 15 years ago
  22. 0c5920c Add missing include. by Daniel Dunbar · 15 years ago
  23. 7da2431 Basic support for representing elaborated type specifiers by John McCall · 15 years ago
  24. d0e3daf Improve the AST representation and semantic analysis for extern by Douglas Gregor · 15 years ago
  25. f790795 Cleanup. by Mike Stump · 15 years ago
  26. d82f8fa Tweak darwin::Link::AddLinkArgs. by Daniel Dunbar · 15 years ago
  27. 78dbd58 Implement darwin::Link::AddDarwinArch for ARM. by Daniel Dunbar · 15 years ago
  28. a78c5c3 If a destructor is referenced or a pseudo-destructor expression is by Douglas Gregor · 15 years ago
  29. a71d819 Implement AST, semantics, and CodeGen for C++ pseudo-destructor by Douglas Gregor · 15 years ago
  30. 9efa767 Implement accessors clang_getCursorKind(), clang_getCursorDecl(). by Steve Naroff · 15 years ago
  31. 45f9655 Parse extern templates, pass that information all the way to Sema, by Douglas Gregor · 15 years ago
  32. e6585a7 Actually initialize HasQualifier and HasExplicitTemplateArgumentList in the EmptyShell constructor for MemberExpr. Should clear up some valgrind failures in PCH reading by Douglas Gregor · 15 years ago
  33. f1bbbb4 Correctly handle elaborated template ids. Still not handled properly for friends. by John McCall · 15 years ago
  34. 34374e6 Patch to instantiate destructors used to destruct by Fariborz Jahanian · 15 years ago
  35. c68afe2 Improve template instantiation for member access expressions that by Douglas Gregor · 15 years ago
  36. 80545ad Issue diagnostics in variety of situations involving by Fariborz Jahanian · 15 years ago
  37. 77accc1 Add ASTUnit::getOriginalSourceFileName() and use in clang_getTranslationUnitSpelling(). by Steve Naroff · 15 years ago
  38. a38c687 Improved handling for dependent, qualified member access expressions, e.g., by Douglas Gregor · 15 years ago
  39. af08ddc by Steve Naroff · 15 years ago
  40. bce6f62 Revert "Visit function/method bodies and issue callback for parameters and local by Daniel Dunbar · 15 years ago
  41. 5345c39 Add basic support for -pthread. by Daniel Dunbar · 15 years ago
  42. e1ccccf Fix 80 column violations. by Ted Kremenek · 15 years ago
  43. f8ec55a Add CastExpr::getCastKindName and use it in the StmtDumper. by Anders Carlsson · 15 years ago
  44. 16b1037 This patch does the following. by Fariborz Jahanian · 15 years ago
  45. 23d8bea Visit function/method bodies and issue callback for parameters and local variables. by Steve Naroff · 15 years ago
  46. 2700dcd Add a wicked little test-case that illustrates what we have to deal by Douglas Gregor · 15 years ago
  47. 2dd078a Rewrite of our handling of name lookup in C++ member access expressions, e.g., by Douglas Gregor · 15 years ago
  48. a0d4b63 Fix a crash when referencing static data members. by Anders Carlsson · 15 years ago
  49. f334b4e Start issuing callback for references (add some predicates, refactor some code). by Steve Naroff · 15 years ago
  50. c857ea4 Flesh out CXCursorKind... by Steve Naroff · 15 years ago
  51. 6403b57 Refactor the check for bad divide into a checker. by Zhongxing Xu · 15 years ago
  52. a97d54c Replace uses of ImmutableSet in SymbolReaper with DenseSet. This was by Ted Kremenek · 15 years ago
  53. ce8827a It is illegal to derefrercne to an interface in objc's non-fragile ABI. by Fariborz Jahanian · 15 years ago
  54. 72f6d67 In CXXBaseOrMemberInitializer, don't confuse CtorTocall with by Douglas Gregor · 15 years ago
  55. b633c4e Add a CK_FunctionToPointerDecay cast kind. by Anders Carlsson · 15 years ago
  56. 61481da Add DeclContext::Equals to compare declaration contexts based on their primary context. Use this instead of pointer comparisons by Douglas Gregor · 15 years ago
  57. b7cd17c Tweak comment based on Daniel's recently added '-emit-ast' option. by Steve Naroff · 15 years ago
  58. ac25503 "The attached patch moves AttributeList::addAttributeList outside the by Douglas Gregor · 15 years ago
  59. 5915fbf Add driver support for -emit-ast and AST compilation steps. by Daniel Dunbar · 15 years ago
  60. 35f153f Tip-toe around strict-aliasing violation. Fixes PR4061. by Douglas Gregor · 15 years ago
  61. 2b8ee6c Add explicit "blind" client data to callback function (since we aren't using blocks). by Steve Naroff · 15 years ago
  62. d8b285f Don't assert when instantiating member references to fields in anonymous structs. by Anders Carlsson · 15 years ago
  63. c4bf26f Preliminary AST representation and semantic analysis for by Douglas Gregor · 15 years ago
  64. 83f6faf Eliminate CXXAdornedMemberExpr entirely. Instead, optionally allocate by Douglas Gregor · 15 years ago
  65. ab88d97 Fix bug 4784 and allow friend declarations to properly extend by John McCall · 15 years ago
  66. 0979c80 Rename CXXQualifiedMemberExpr -> CXXAdornedMemberExpr, since we will by Douglas Gregor · 15 years ago
  67. f328a28 Add parsing for references to member function templates with explicit by Douglas Gregor · 15 years ago
  68. 9ac6f62 PR4836, part 1: add Sema support for __builtin_isnan and friends; they by Eli Friedman · 15 years ago
  69. a6f0f9d Support explicit C++ member operator syntax, from James Porter! by Douglas Gregor · 15 years ago
  70. 8a5a9aa Updated GNU runtime non-fragile ABI. by David Chisnall · 15 years ago
  71. 2d4d629 Implement source/line/column hooks. by Steve Naroff · 15 years ago
  72. 89922f8 More fleshing out the C-based indexing API (under construction). by Steve Naroff · 15 years ago
  73. 639bfc7 Improve missing error messages as suggested by Doug. by Anders Carlsson · 15 years ago
  74. f4d84b6 Improve diagnostics for missing members. This renames the err_typecheck_no_member to err_typecheck_no_member_deprecated. The idea is that err_typecheck_no_member_deprecated should be phased out and any call sites that reference it should call DiagnoseMissingMember instead. by Anders Carlsson · 15 years ago
  75. 19a97e2 Fix TypeLoc::operator bool(). by Argyrios Kyrtzidis · 15 years ago
  76. 595adc1 Set the access specifier for using decls. by Anders Carlsson · 15 years ago
  77. 0d8df78 Improve instantiation of UnresolvedUsingDecls. by Anders Carlsson · 15 years ago
  78. d933a01 Get rid of mostly-unused, buggy method. by Eli Friedman · 15 years ago
  79. 52a575a Fix the breakage by handling indirect instantiations. This would be much by John McCall · 15 years ago
  80. 8c57a66 Store the SourceLocation of right parentheses in member initializers. Patch by Anders Johnsen! by Anders Carlsson · 15 years ago
  81. 7fe5d72 path to ir-gen 12.3.1 Conversion by constructor by Fariborz Jahanian · 15 years ago
  82. faccd72 Fix this for real. by Anders Carlsson · 15 years ago
  83. 5039819 Lot's of little changes to get the C-based indexing API going... by Steve Naroff · 15 years ago
  84. 0dde18e Instantiate unresolved using declarations. by Anders Carlsson · 15 years ago
  85. 7e8f818 Add CX prefix to Cursor and move a comment. by Steve Naroff · 15 years ago
  86. 02cace7 Omnibus friend decl refactoring. Instead of cloning AST classes for friend by John McCall · 15 years ago
  87. 550b14b Create UnresolvedUsingDecls. by Anders Carlsson · 15 years ago
  88. 665b49c Check in UnresolvedUsingDecl. by Anders Carlsson · 15 years ago
  89. abd46e1 Use SymbolicRegion instead of CodeTextRegion for symbolic function by Ted Kremenek · 15 years ago
  90. 73b39cf More work on using declarations. by Anders Carlsson · 15 years ago
  91. cf9f921 Many improvements to using declarations. by Anders Carlsson · 15 years ago
  92. dd46ade Accept and ignore a few more -Wflags. by Chris Lattner · 15 years ago
  93. 8a5ae24 When looking for overloaded member operators, make sure to instantiate by Douglas Gregor · 15 years ago
  94. 8e02934 Rename 'bindExpr' to 'BindExpr'. by Ted Kremenek · 15 years ago
  95. 6d2c657 Move the AnalysisContext* from GRState to Environment. by Ted Kremenek · 15 years ago
  96. 51ac7d4 Add __builtin_memchr (used by GNU libstdc++). by Eli Friedman · 15 years ago
  97. 600866c Fill in Index.h header file and add stubs to implementation file. by Steve Naroff · 15 years ago
  98. cbdebdd PR4800: Implement -Wpointer-arith. I think this is the correct behavior by Eli Friedman · 15 years ago
  99. d60e105 Implement instantiation of the declarations of member function by Douglas Gregor · 15 years ago
  100. 1d8bdd3 Remove unused utility methods of GRStmtNodeBuilder. by Zhongxing Xu · 15 years ago