1. d57959a Initial implementation of parsing, semantic analysis, and template by Douglas Gregor · 15 years ago
  2. ced2101 Add missing header file change. by Ted Kremenek · 15 years ago
  3. 55d3aaf Finish off semantic analysis for regparm, and remove the warning. Also by Eli Friedman · 15 years ago
  4. 769dbdf minor cleanups: make getIdentifierNamespace() be a single load by Chris Lattner · 15 years ago
  5. 1c9b742 Fixup -fcommon and -fno-common to be more gcc compatible. by Mike Stump · 15 years ago
  6. 0cf2b19 reduce # const_casts, no functionality change. by Chris Lattner · 15 years ago
  7. 10d8379 change Decl::DeclCtx to use a PointerIntPair instead of hand bitmangling. by Chris Lattner · 15 years ago
  8. ee76033 Besides the warning, issue unsupported diagnostics in by Fariborz Jahanian · 15 years ago
  9. 8a9a267 Move declaration of 'PathDiagnostic' to the end of PathDiagnostic.h and add PathDiagnostic::getLocation(). by Ted Kremenek · 15 years ago
  10. 89e65a1 PathDiagnostic: replace 'std::list' with 'std::deque' by Ted Kremenek · 15 years ago
  11. c3a838b Add iterators to PathDiagnosticControlFlowDiagnostic for iterating over the by Ted Kremenek · 15 years ago
  12. c4f1e87 Implement checking for base class access. Right now it's overly conservative but that will change. (Also, protected isn't implemented right now). by Anders Carlsson · 15 years ago
  13. 214f31a If the user is trying to apply the -> or . member reference operator by Douglas Gregor · 15 years ago
  14. babdd7b BugReporter: by Ted Kremenek · 15 years ago
  15. 9af5500 Fix rdar://6719156 - clang should emit a better error when blocks are disabled but are used anyway by Chris Lattner · 15 years ago
  16. a11982a - Fix thinko in implementation of PathDiagnosticLocation::asStmt(). Thanks to by Ted Kremenek · 15 years ago
  17. 950bedd Fix searching for gcc, we only want executable files. by Mike Stump · 15 years ago
  18. 119057a Clarify that QualifiedNameType is sugar-only. This will matter once we can parse typename-specifiers by Douglas Gregor · 15 years ago
  19. 3507369 Simplify CXXScopeSpec a lot. No more weird SmallVector-like hacks here by Douglas Gregor · 15 years ago
  20. ab452ba Revamp our representation of C++ nested-name-specifiers. We now have a by Douglas Gregor · 15 years ago
  21. 5bf17cd I said _fix_ the build, don't break it. by Anders Carlsson · 15 years ago
  22. f569cc5 Fix build. by Anders Carlsson · 15 years ago
  23. 05bf2c7 Add by Anders Carlsson · 15 years ago
  24. 6f00204 - Add class PathDiagosticLocationPair. by Ted Kremenek · 15 years ago
  25. becf888 Implement PathDiagnosticLocation::asRange() and PathDiagnosticLocation::asStmt(). by Ted Kremenek · 15 years ago
  26. 97b4003 - Implement PathDiagnosticLocation::asLocation. by Ted Kremenek · 15 years ago
  27. ad75653 Because of the use of 'cast<TagDecl>', ASTContext.h now depends on Decl.h. by Ted Kremenek · 15 years ago
  28. 1f9bd0f PathDiagnostics (analyzer): by Ted Kremenek · 15 years ago
  29. 069afd5 Driver: Forward -fno-common to clang. by Daniel Dunbar · 15 years ago
  30. 02633b5 Driver: Add darwin::Link tool. by Daniel Dunbar · 15 years ago
  31. d7b88c2 Driver: Fix a number of option definition mismatches (flags instead of by Daniel Dunbar · 15 years ago
  32. 70c8db1 Driver: Print the correct target when printing the version. by Daniel Dunbar · 15 years ago
  33. d73fe9b Driver: Move GetReleaseVersion to static Driver::GetReleaseVersion method. by Daniel Dunbar · 15 years ago
  34. 524b9fb Driver: Add ArgList::AddAllArgsTranslated; for forwarding options to by Daniel Dunbar · 15 years ago
  35. bd36064 most of this is plumbing to get CompileOptions down into by Chris Lattner · 15 years ago
  36. e062533 make this self contained, declare everything as 'class'. by Chris Lattner · 15 years ago
  37. e0e4ebf analyzer infrastructure: make a bunch of changes to symbolic expressions that by Ted Kremenek · 15 years ago
  38. 5aeccdb Handle parsing of templates in member declarations. Pass the AccessSpecifier all the way down to ActOnClassTemplate. by Anders Carlsson · 15 years ago
  39. 5071345 Check that the access specifier of a member redeclaration is the same as the original declaration. by Anders Carlsson · 15 years ago
  40. befc20e The injected-class-name of class templates and class template by Douglas Gregor · 15 years ago
  41. 1329c27 Tighten the setAccess assert. We now allow AS_none if the decl contex is not a C++ record decl. by Anders Carlsson · 15 years ago
  42. 06c0fec Pass access specifiers through to member classes and member enums. by Douglas Gregor · 15 years ago
  43. d475b8d Instantiation for member classes of class templates. Note that only by Douglas Gregor · 15 years ago
  44. b8547e8 It doesn't make sense to set the access specifier to AS_none (I think) by Anders Carlsson · 15 years ago
  45. c9b5b40 Predicate to detect when a RecordDecl is really the injected-class-name by Douglas Gregor · 15 years ago
  46. 4e7e9cf Driver: Handle -Xarch_, including warning for nasty -Xarch_ use cases by Daniel Dunbar · 15 years ago
  47. f6dd66b Driver: Replace Option::ForwardToGCC by Option::DriverOption (which by Daniel Dunbar · 15 years ago
  48. a129eb9 This patch adds two more SymbolData subclasses: SymIntExpr and SymSymExpr, for by Zhongxing Xu · 15 years ago
  49. f3cad36 Driver: Prep for tool chain specific argument translation. by Daniel Dunbar · 15 years ago
  50. a7b3521 Improve handling of base initializers. We now parse initializers in out of line decls, such as: by Anders Carlsson · 15 years ago
  51. 212e81c In Parser::ParseClassSpecifier, don't conflate a NULL declaration with by Douglas Gregor · 15 years ago
  52. 50de12f Parse deleted function definitions and hook them up to Doug's machinery. by Sebastian Redl · 15 years ago
  53. bad0e65 Type::isObjectType now implements the (more sensible) C++ definition by Douglas Gregor · 15 years ago
  54. 337a627 Driver: Handle -flto, -O4, and tweak -emit-llvm to match llvm-gcc. by Daniel Dunbar · 15 years ago
  55. e7450f5 Make sure to use RequireCompleteType rather than testing for by Douglas Gregor · 15 years ago
  56. 6256d36 Driver: Warn when 'clang' is used to compile a source file we could by Daniel Dunbar · 15 years ago
  57. 0f99d2e Driver: Change default use of "clang" compiler. by Daniel Dunbar · 15 years ago
  58. af80e1f Move ToolChain::ShouldUseClangCompiler to by Daniel Dunbar · 15 years ago
  59. b3fd500 Driver: Translate -fverbose-asm for LLVM backend. by Daniel Dunbar · 15 years ago
  60. fe2e04a Driver: ArgList::getLastArg was in fact returning the first matching arg. by Daniel Dunbar · 15 years ago
  61. 8211eff More work on diagnosing abstract classes. We can now handle cases like by Anders Carlsson · 15 years ago
  62. d3dfdb8 ccc/Driver: -r option doesn't take an argument. by Daniel Dunbar · 15 years ago
  63. 4726d03 Implement '#pragma unused'. by Ted Kremenek · 15 years ago
  64. a880db0 Driver: Add two special groups of "whitelisted" options which we know by Daniel Dunbar · 15 years ago
  65. b355692 Driver: Check that options are ordered properly (outside of by Daniel Dunbar · 15 years ago
  66. b9bbe49 It's an error to try to allocate an abstract object using new. by Anders Carlsson · 15 years ago
  67. 374e156 Fix PR3855. When we encounter an incompatible redeclaration of a by Douglas Gregor · 15 years ago
  68. 693de5d analyzer: Fix embarrassing regression in BasicStore when invalidating struct by Ted Kremenek · 15 years ago
  69. 743de1f Recognize rvalue references in C++03, but complain about them. This leads to far better error recovery. by Sebastian Redl · 15 years ago
  70. f05c05d Partial implementation of PR3342: break out pointer sign by Eli Friedman · 15 years ago
  71. f2e21e5 Disallow catching exceptions by rvalue reference. by Sebastian Redl · 15 years ago
  72. b0c4df5 Driver: Implement 'missing argument' error. by Daniel Dunbar · 15 years ago
  73. acddd2e .td files have been used for a few days without complaint. Kill the .def files. by Sebastian Redl · 15 years ago
  74. 157be83 Implement static_cast from lvalue to rvalue reference. by Sebastian Redl · 15 years ago
  75. e7c6f7a Check that the return/argument types of calls are complete. by Eli Friedman · 15 years ago
  76. 4681ebd Disallow abstract types where appropriate. by Anders Carlsson · 15 years ago
  77. 26d1a40 add some missing type predicates. by Chris Lattner · 15 years ago
  78. 22f0d09 PTHManager::Create(): by Ted Kremenek · 15 years ago
  79. 67e4dd2 Keep track of whether a class is abstract or not. This is currently only used for the __is_abstract type trait. by Anders Carlsson · 15 years ago
  80. b31cb7f Issue error if variables are defined inside an objc class, category or protocol. by Fariborz Jahanian · 15 years ago
  81. 91058ff continue dancing around the obvious algorithm issues in PR3810: by Chris Lattner · 15 years ago
  82. ac8d75f add an assertion for unreachable code. by Chris Lattner · 15 years ago
  83. 81abbdd partially inline getAttrs() to speed up PR3810 (and lots of by Chris Lattner · 15 years ago
  84. af96def Driver: Give Compilation::Execute total control over the Driver result by Daniel Dunbar · 15 years ago
  85. fa21920 When building the structured initializer list, pre-allocate storage in by Douglas Gregor · 15 years ago
  86. 9f9768c ccc/Driver/clang-fe: Accept -fbuiltin, and forward -f[no-]builtin to clang. by Daniel Dunbar · 15 years ago
  87. e33bea4 ccc/Driver: .s defaults to 'assembler-with-cpp' on Darwin. by Daniel Dunbar · 15 years ago
  88. 5908a92 InitListDesignations hasn't been used (ever). Eliminate it, and by Douglas Gregor · 15 years ago
  89. 25a88bb Eliminate post-diagnostic hooks. Instead, implement a Sema-specific by Douglas Gregor · 15 years ago
  90. 082d936 Fix <rdar://problem/6704086> by allowing the format string checking in Sema to by Ted Kremenek · 15 years ago
  91. 57e8b05 Improve documentation for MemberExpr by Douglas Gregor · 15 years ago
  92. bb9b271 GRExprEngine: by Ted Kremenek · 15 years ago
  93. fc6a899 Driver: Parse Darwin version out of target triple. by Daniel Dunbar · 15 years ago
  94. def1a88 Allow profiling of "invalid" Symbols. by Ted Kremenek · 15 years ago
  95. ee51031 Driver: Add two option overload for AddAllArgValues. by Daniel Dunbar · 15 years ago
  96. 3332864 pass LangOptions into TargetInfo::getTargetDefines, so that targets by Chris Lattner · 15 years ago
  97. 7e9c90b add a new LangOptions::GNUMode bit to distinguish between GNU99 and C99 etc. by Chris Lattner · 15 years ago
  98. 38dd3d5 Driver: Add Arg::getAsString and use when dumping arguments to by Daniel Dunbar · 15 years ago
  99. ca3459e Driver: Implement -print-search-dirs. by Daniel Dunbar · 15 years ago
  100. bbafc5c Driver: Unbreak ToolChain::get{File,Program}Paths (which should return by Daniel Dunbar · 15 years ago