1. a2f4ec0 Do not call FlushReports() in GRBugReporter's dtor. We already call it in by Zhongxing Xu · 15 years ago
  2. 6bc107b Report errors for member functions correctly. by Anders Carlsson · 15 years ago
  3. 25cae7f Use a separate diagnostic for default function argument expressions. by Anders Carlsson · 15 years ago
  4. 248072a Refactor builtin function evaluation code into its own function. by Zhongxing Xu · 15 years ago
  5. 0c5920c Add missing include. by Daniel Dunbar · 15 years ago
  6. 7da2431 Basic support for representing elaborated type specifiers by John McCall · 15 years ago
  7. d0e3daf Improve the AST representation and semantic analysis for extern by Douglas Gregor · 15 years ago
  8. 4fe95f9 Don't generate any code for an explicit call to a trivial destructor. by Douglas Gregor · 15 years ago
  9. f790795 Cleanup. by Mike Stump · 15 years ago
  10. ae33f8f Merge libgcc spec changes for darwin::Link::ConstructJob. by Daniel Dunbar · 15 years ago
  11. d82f8fa Tweak darwin::Link::AddLinkArgs. by Daniel Dunbar · 15 years ago
  12. 78dbd58 Implement darwin::Link::AddDarwinArch for ARM. by Daniel Dunbar · 15 years ago
  13. 30392de Darwin: Pass -iphoneos-version-min to ld when building for ARM. by Daniel Dunbar · 15 years ago
  14. ad8958c Also compare stdout and stderr lines. by Daniel Dunbar · 15 years ago
  15. da64141 Add -ccc-install-dir option for faking installation path. by Daniel Dunbar · 15 years ago
  16. f395528 Rename Darwin_X86 toolchain to just Darwin, this can support all platforms. by Daniel Dunbar · 15 years ago
  17. a78c5c3 If a destructor is referenced or a pseudo-destructor expression is by Douglas Gregor · 15 years ago
  18. ed032eb Add overidding for methods for vtable building for the secondary by Mike Stump · 15 years ago
  19. 2e30e59 Use llvm::sys::getHostTriple, not LLVM_HOSTTRIPLE. by Daniel Dunbar · 15 years ago
  20. 8f5fdbe Make CmpDriver less stupid. by Daniel Dunbar · 15 years ago
  21. 2f42d4a Support 'make test TESTSUITE=CodeGen', etc. by Daniel Dunbar · 15 years ago
  22. 8f28962 Remove unused argument. by Daniel Dunbar · 15 years ago
  23. a71d819 Implement AST, semantics, and CodeGen for C++ pseudo-destructor by Douglas Gregor · 15 years ago
  24. 9efa767 Implement accessors clang_getCursorKind(), clang_getCursorDecl(). by Steve Naroff · 15 years ago
  25. d93bacf When searching for a default constructor or copy constructor, skip constructor templates by Douglas Gregor · 15 years ago
  26. 45f9655 Parse extern templates, pass that information all the way to Sema, by Douglas Gregor · 15 years ago
  27. b117a60 Introduce an egregious hack to fix PR4828. by Douglas Gregor · 15 years ago
  28. 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
  29. 5adf438 Add a valgrind suppressions file for x86_64-pc-linux-gnu and gcc-4.3.3 which by Daniel Dunbar · 15 years ago
  30. 6ac8b87 Add --vg-arg option to clang test runner. by Daniel Dunbar · 15 years ago
  31. 4e71ddb move the check into MarkNoReturnFunction. by Zhongxing Xu · 15 years ago
  32. 326d617 Extract mark-no-return-function code into a function. by Zhongxing Xu · 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. 3662000 If the alignment of the chosen field in a union is greater than the alignment of the union, we need to use a packed LLVM struct. Fixes <rdar://problem/7184250>. by Anders Carlsson · 15 years ago
  36. 81499bb Implement tree transformations for DeclarationNames. Among other by Douglas Gregor · 15 years ago
  37. 464061a Update C++ status, since a bunch of the comments were out-of-date by Douglas Gregor · 15 years ago
  38. c68afe2 Improve template instantiation for member access expressions that by Douglas Gregor · 15 years ago
  39. 9d43620 Mark constructors used in initialization of base(s) and fields by Fariborz Jahanian · 15 years ago
  40. 80545ad Issue diagnostics in variety of situations involving by Fariborz Jahanian · 15 years ago
  41. b8b844b Don't use '%ll', this doesn't workin on Win32. by Daniel Dunbar · 15 years ago
  42. 77accc1 Add ASTUnit::getOriginalSourceFileName() and use in clang_getTranslationUnitSpelling(). by Steve Naroff · 15 years ago
  43. a38c687 Improved handling for dependent, qualified member access expressions, e.g., by Douglas Gregor · 15 years ago
  44. af08ddc by Steve Naroff · 15 years ago
  45. 972d954 Save/load POSIXThreads flag for PCH by Douglas Gregor · 15 years ago
  46. bce6f62 Revert "Visit function/method bodies and issue callback for parameters and local by Daniel Dunbar · 15 years ago
  47. cc31893 Revert "Remove redundant local variable (use newly created instance data).", the by Daniel Dunbar · 15 years ago
  48. 5345c39 Add basic support for -pthread. by Daniel Dunbar · 15 years ago
  49. 4d86151 Tweak comment. by Daniel Dunbar · 15 years ago
  50. e1ccccf Fix 80 column violations. by Ted Kremenek · 15 years ago
  51. 75c135a Fixed bug introduced in r79900 where FreeBSD was turned into NetBSD, transposing the ABIs and breaking both platforms. by David Chisnall · 15 years ago
  52. 970e03a Fix regression introduced in r80786 and reported in PR 4867. We should use by Ted Kremenek · 15 years ago
  53. d2a8775 remove a debug output I introduced in the last commit. by Zhongxing Xu · 15 years ago
  54. 4f711c4 Update. by Mike Stump · 15 years ago
  55. f8ec55a Add CastExpr::getCastKindName and use it in the StmtDumper. by Anders Carlsson · 15 years ago
  56. bbff699 Remove redundant local variable (use newly created instance data). by Steve Naroff · 15 years ago
  57. 16b1037 This patch does the following. by Fariborz Jahanian · 15 years ago
  58. 23d8bea Visit function/method bodies and issue callback for parameters and local variables. by Steve Naroff · 15 years ago
  59. 2700dcd Add a wicked little test-case that illustrates what we have to deal by Douglas Gregor · 15 years ago
  60. dd9967a Don't try to CodeGen using directives, from Anders Johnsen by Douglas Gregor · 15 years ago
  61. d697081 Initialize targets before parsing command line options, so --version shows registered targets. by Daniel Dunbar · 15 years ago
  62. 916a5ed Minor refactoring of my last patch. by Fariborz Jahanian · 15 years ago
  63. cf1b9c7 Referenced instatiated default constructors must be defined. Fixed pr4853. by Fariborz Jahanian · 15 years ago
  64. 2dd078a Rewrite of our handling of name lookup in C++ member access expressions, e.g., by Douglas Gregor · 15 years ago
  65. 6c35415 Added a FIXME to the test case. by Fariborz Jahanian · 15 years ago
  66. c186b8f Fix an assertion when initializing a union using a member initializer. (We weren't casting from the union type to the initializer type correctly). by Anders Carlsson · 15 years ago
  67. 9ab605a Changed abi mode for these test which are dereferencing an interface pointer. by Fariborz Jahanian · 15 years ago
  68. a0d4b63 Fix a crash when referencing static data members. by Anders Carlsson · 15 years ago
  69. db74092 Update checker build. by Ted Kremenek · 15 years ago
  70. 10c2d31 Fix warnings. by Eli Friedman · 15 years ago
  71. 82b9fb8 Borrow a friend class's previous declaration's access specifier regardless of by John McCall · 15 years ago
  72. f4b5f5c Fix a codegen crash when a class template has a constructor that does member initialization of an anonymous union. by Anders Carlsson · 15 years ago
  73. 1164d85 Fix some newly added bugs uncovered by the RELEASE build. by Steve Naroff · 15 years ago
  74. f334b4e Start issuing callback for references (add some predicates, refactor some code). by Steve Naroff · 15 years ago
  75. d0eb3b9 Packed unions should be packed. Fixes an assert Daniel reported. by Anders Carlsson · 15 years ago
  76. 636a0ff Allow null initialization of scalara data members by Fariborz Jahanian · 15 years ago
  77. c857ea4 Flesh out CXCursorKind... by Steve Naroff · 15 years ago
  78. 6403b57 Refactor the check for bad divide into a checker. by Zhongxing Xu · 15 years ago
  79. de18d12 Document how we intepret C++ DR 382 by Douglas Gregor · 15 years ago
  80. ae44067 Add a few more typename-specifier tests that involve simple-template-ids in the nested-name-specifier by Douglas Gregor · 15 years ago
  81. 6946baf When parsing typename specifiers (with either the identifier or by Douglas Gregor · 15 years ago
  82. d99f361 Refactor bad callee check into a Checker. by Zhongxing Xu · 15 years ago
  83. 904e1e3 Still use BadArg bugtype in the checker. This saves us implement registerInitialVisitors by Zhongxing Xu · 15 years ago
  84. a97d54c Replace uses of ImmutableSet in SymbolReaper with DenseSet. This was by Ted Kremenek · 15 years ago
  85. 2465047 Implement: <rdar://problem/6337100> CWE-338: Use of cryptographically weak prng by Ted Kremenek · 15 years ago
  86. 5348932 When adding a friend class declaration to the lookup tables, use the access specifier by John McCall · 15 years ago
  87. 1a26c27 Fix a little crasher in friend decls. Thanks again to Eli for finding this. by John McCall · 15 years ago
  88. 9124bcc Add mangling for covariant thunks. by Mike Stump · 15 years ago
  89. d7eff68 Ensure that the tag decls of friend decls aren't added to the friending class's by John McCall · 15 years ago
  90. 883f127 Shorten name. by Mike Stump · 15 years ago
  91. 141c5af Add mangling for thunks. by Mike Stump · 15 years ago
  92. 7f89047 Test for my last patch. by Fariborz Jahanian · 15 years ago
  93. ce8827a It is illegal to derefrercne to an interface in objc's non-fragile ABI. by Fariborz Jahanian · 15 years ago
  94. f9a883c More overriding base work and some cleanups. WIP. by Mike Stump · 15 years ago
  95. a4ad5ab After a conversation with Doug. I added a fix me to by Fariborz Jahanian · 15 years ago
  96. 35191b6 Split out overriding. WIP. by Mike Stump · 15 years ago
  97. 74be00b Testcase for recent checkin. by Mike Stump · 15 years ago
  98. faf8664 Handle member expressions that return references correctly. by Anders Carlsson · 15 years ago
  99. de738fe Assert that we don't have any virtual bases. We can emit dtors for polymorphics classes just fune. by Anders Carlsson · 15 years ago
  100. 72f6d67 In CXXBaseOrMemberInitializer, don't confuse CtorTocall with by Douglas Gregor · 15 years ago