1. a1a1b30 As Eli pointed out, it is possible that a namespace lookup is ambiguous! by Anders Carlsson · 15 years ago
  2. e66a8cf some random cleanups by Chris Lattner · 15 years ago
  3. 5721c68 Check that the alias points to a valid namespace. by Anders Carlsson · 15 years ago
  4. b0b6f72 Properly escape special characters in <string>'s in plist file. by Ted Kremenek · 15 years ago
  5. 7e24e82 rename some methods. by Chris Lattner · 15 years ago
  6. fe95dea Cleanups for DeclGroup. by Chris Lattner · 15 years ago
  7. 8d7ba40 Check that the namespace alias doesn't conflict with a previous declaration in this scope. by Anders Carlsson · 15 years ago
  8. 239a53e tidy whitespace. by Chris Lattner · 15 years ago
  9. 244a67d rename NextDeclInScope to NextDeclInContext, since the pointer by Chris Lattner · 15 years ago
  10. dbb0094 Add an ActOnNamespaceAliasDef action and have the parser call it. by Anders Carlsson · 15 years ago
  11. 1266eca remove TranslationUnit. by Chris Lattner · 15 years ago
  12. 557c5b1 push more ASTContext goodness out through interfaces that use TranslationUnit by Chris Lattner · 15 years ago
  13. 14734f7 Revert Sebastian's rvalue patch (r67870) since it caused test failures in by Anders Carlsson · 15 years ago
  14. 3599dbe remove TranslationUnit from ParseAST. by Chris Lattner · 15 years ago
  15. dacbc5d change HandleTranslationUnit to take an ASTContext instead of TranslationUnit by Chris Lattner · 15 years ago
  16. 1d9a23a Text PathDiagnosticBuilder::getEnclosingStmt() about '?' by Ted Kremenek · 15 years ago
  17. f67606a Parse namespace aliases. by Anders Carlsson · 15 years ago
  18. 3776d4c simplify away some dead ownership stuff, TranslationUnit is now by Chris Lattner · 15 years ago
  19. d2fa675 hoist TranslationUnit some more. by Chris Lattner · 15 years ago
  20. 80a0333 eliminate some wrappers. by Chris Lattner · 15 years ago
  21. 5f737cc eliminate ReadASTBitcodeFile by Chris Lattner · 15 years ago
  22. a9376d4 move serialization logic from TranslationUnit to ASTContext. by Chris Lattner · 15 years ago
  23. af3e3d5 Teach PathDiagnosticBuilder::getEnclosingStmtLocation() about while/if/do/for, by Ted Kremenek · 15 years ago
  24. 515ff5a Trivial cleanup. by Eli Friedman · 15 years ago
  25. 48f9122 Move where block-related variables are initialized so that block by Eli Friedman · 15 years ago
  26. ccf0ed8 Minor cleanup. by Eli Friedman · 15 years ago
  27. daa24a2 Misc small fixes/cleanups/comment changes. by Eli Friedman · 15 years ago
  28. 7bb0da0 eliminate ASTConsumer::InitializeTU, all clients are by Chris Lattner · 15 years ago
  29. ed0e497 remove TranslationUnit::OwnsDecls, which is only set, never read. by Chris Lattner · 15 years ago
  30. 9ecd26a simplify ParseAST by sucking -disable-free handling logic up into clang.cpp by Chris Lattner · 15 years ago
  31. ab3a852 Change compound assignment operators to keep track of both the promoted by Eli Friedman · 15 years ago
  32. e5194ff Implement access checking for protected base classes. by Anders Carlsson · 15 years ago
  33. eeae8f0 Make our diagnostics about the obsolete GNU designated-initializer by Douglas Gregor · 15 years ago
  34. 1ae0afa Better way to free NestedNameSpecifiers. Thanks, Chris by Douglas Gregor · 15 years ago
  35. 68c56de Fix <rdar://problem/6724396>, where we were silently dropping by Douglas Gregor · 15 years ago
  36. e7dcd78 Perform a very, very ugly song-and-dance number to free the by Douglas Gregor · 15 years ago
  37. 0773903 Do not emit debug information for variables while generating optimized code. The llvm optimizer and code generator are not yet ready to support optimized code debugging. by Devang Patel · 15 years ago
  38. d57959a Initial implementation of parsing, semantic analysis, and template by Douglas Gregor · 15 years ago
  39. f873878 Better overload resolution for rvalue references. by Sebastian Redl · 15 years ago
  40. d8c938b BugReporter: For control-flow edges from 'if', 'for', 'do', 'while' to by Ted Kremenek · 15 years ago
  41. 55d3aaf Finish off semantic analysis for regparm, and remove the warning. Also by Eli Friedman · 15 years ago
  42. 2993cda Fix test failures caused by reading memory after freeing it. My fix is by Eli Friedman · 15 years ago
  43. 00605e0 BugReporter: PathDiagnosticBuilder::ExecutionContinues now returns a by Ted Kremenek · 15 years ago
  44. 769dbdf minor cleanups: make getIdentifierNamespace() be a single load by Chris Lattner · 15 years ago
  45. 0cf2b19 reduce # const_casts, no functionality change. by Chris Lattner · 15 years ago
  46. f8080a3 It is OK to cast to a private base class if the current member belongs to the class that the private base class is a base of: by Anders Carlsson · 15 years ago
  47. 77bd57c Add a Class field to the base path element structure. This holds the record decl of the class taht the base is a base of. by Anders Carlsson · 15 years ago
  48. 10d8379 change Decl::DeclCtx to use a PointerIntPair instead of hand bitmangling. by Chris Lattner · 15 years ago
  49. ee76033 Besides the warning, issue unsupported diagnostics in by Fariborz Jahanian · 15 years ago
  50. 1662938 push line markers through -E mode. by Chris Lattner · 15 years ago
  51. f48fbc6 analyzer plist: For PathDiagnosticControlFlowPieces, now output an array of by Ted Kremenek · 15 years ago
  52. ca1bada Emit aggregate "location" for PathDiagnostic to plist. This fixes <rdar://problem/6729558>. by Ted Kremenek · 15 years ago
  53. b9f3a77 Driver: Pass -f[no-]pascal-strings on to clang, even if it has been by Daniel Dunbar · 15 years ago
  54. 08c65e0 Driver: -print-libgcc-file-name was searching wrong path list. by Daniel Dunbar · 15 years ago
  55. 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
  56. 214f31a If the user is trying to apply the -> or . member reference operator by Douglas Gregor · 15 years ago
  57. 73b6a44 remove dead code. by Zhongxing Xu · 15 years ago
  58. 5758be2 Update CMake by Douglas Gregor · 15 years ago
  59. d17a9e5 Remove the code insertion hint for implicit int. Too often, we're wrong about this hint, so it loses its usefulness. Maybe some day we can make the hint smart enough to be useful. by Douglas Gregor · 15 years ago
  60. babdd7b BugReporter: by Ted Kremenek · 15 years ago
  61. 29f006b Add a stubbed out CheckBaseClassAccess method. by Anders Carlsson · 15 years ago
  62. c60e888 Move Sema::SetMemberAccessSpecifier to SemaAccess.cpp by Anders Carlsson · 15 years ago
  63. 60d6b0d Add SemaAccess.cpp by Anders Carlsson · 15 years ago
  64. 3329756 Improve recovery when a constructor fails to type-check. Test case from Anders by Douglas Gregor · 15 years ago
  65. 551f48c Tests and fixes for templates declared within (non-template) by Douglas Gregor · 15 years ago
  66. 9af5500 Fix rdar://6719156 - clang should emit a better error when blocks are disabled but are used anyway by Chris Lattner · 15 years ago
  67. 6fa9c38 remove the updated notes. by Zhongxing Xu · 15 years ago
  68. 950bedd Fix searching for gcc, we only want executable files. by Mike Stump · 15 years ago
  69. 47e60ac Put back __OBJC2__ definition. by Fariborz Jahanian · 15 years ago
  70. 3507369 Simplify CXXScopeSpec a lot. No more weird SmallVector-like hacks here by Douglas Gregor · 15 years ago
  71. ab452ba Revamp our representation of C++ nested-name-specifiers. We now have a by Douglas Gregor · 15 years ago
  72. 05bf2c7 Add by Anders Carlsson · 15 years ago
  73. 6f00204 - Add class PathDiagosticLocationPair. by Ted Kremenek · 15 years ago
  74. becf888 Implement PathDiagnosticLocation::asRange() and PathDiagnosticLocation::asStmt(). by Ted Kremenek · 15 years ago
  75. b773702 Add comment. by Ted Kremenek · 15 years ago
  76. a546500 Restructure code to silence bogus GCC warning. by Ted Kremenek · 15 years ago
  77. 97b4003 - Implement PathDiagnosticLocation::asLocation. by Ted Kremenek · 15 years ago
  78. a44ae13 Remove dead code. by Mike Stump · 15 years ago
  79. 1f9bd0f PathDiagnostics (analyzer): by Ted Kremenek · 15 years ago
  80. dbf15cb - Minor change to dump of ivar layout map. by Fariborz Jahanian · 15 years ago
  81. 02633b5 Driver: Add darwin::Link tool. by Daniel Dunbar · 15 years ago
  82. d7b88c2 Driver: Fix a number of option definition mismatches (flags instead of by Daniel Dunbar · 15 years ago
  83. 70c8db1 Driver: Print the correct target when printing the version. by Daniel Dunbar · 15 years ago
  84. 8bfd1b8 Fix <rdar://problem/6697053> instance variable is protected. by Steve Naroff · 15 years ago
  85. d73fe9b Driver: Move GetReleaseVersion to static Driver::GetReleaseVersion method. by Daniel Dunbar · 15 years ago
  86. 524b9fb Driver: Add ArgList::AddAllArgsTranslated; for forwarding options to by Daniel Dunbar · 15 years ago
  87. 8430456 Move "regions" analyzer design document to 'docs'. by Ted Kremenek · 15 years ago
  88. 4b8f99b Simplify some code. No functionality change. by Zhongxing Xu · 15 years ago
  89. 7fddc33 Check in some design documents to centralize ideas around region store and the by Zhongxing Xu · 15 years ago
  90. 3308382 Sanity-check argument to indirect goto. by Eli Friedman · 15 years ago
  91. 92b3699 hopefully fix VC++ build error. by Chris Lattner · 15 years ago
  92. bd36064 most of this is plumbing to get CompileOptions down into by Chris Lattner · 15 years ago
  93. e0e4ebf analyzer infrastructure: make a bunch of changes to symbolic expressions that by Ted Kremenek · 15 years ago
  94. 4cbe82c Set the access specifier for templates inside classes. by Anders Carlsson · 15 years ago
  95. 0cf8830 Factor the member access specifier setting code into its own function. No intended functionality change. by Anders Carlsson · 15 years ago
  96. 5aeccdb Handle parsing of templates in member declarations. Pass the AccessSpecifier all the way down to ActOnClassTemplate. by Anders Carlsson · 15 years ago
  97. 5071345 Check that the access specifier of a member redeclaration is the same as the original declaration. by Anders Carlsson · 15 years ago
  98. bbf4623 Fix for PR3869: actually enforce that the argument of an indirect goto by Eli Friedman · 15 years ago
  99. befc20e The injected-class-name of class templates and class template by Douglas Gregor · 15 years ago
  100. 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