1. 58f5ec7 Add destructor and cleanup code to LocationContext (fixing some leaks). Along the way, have by Ted Kremenek · 15 years ago
  2. bf1914b For now, we need to have the llvm type of the block pointer remain as by Mike Stump · 15 years ago
  3. 2357da0 Moved comment to its proper place in my last patch. by Fariborz Jahanian · 15 years ago
  4. 8577c98 Patch implements ranking conversions between member pointers [over.ics.rank] by Fariborz Jahanian · 15 years ago
  5. 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
  6. 74782b0 Driver: If unable to find the gcc tool chain, try the next OS rev. by Daniel Dunbar · 15 years ago
  7. f6a39b7 Encode global variable name in debug info. by Devang Patel · 15 years ago
  8. 2b6c731 Add missing semi-colon. by Daniel Dunbar · 15 years ago
  9. 7ee68bd Bring Darwin into the switch-case statement instead of its own if for readability. by Edward O'Callaghan · 15 years ago
  10. 209a8c2 Issue warning if method body starts with a semicolon. by Fariborz Jahanian · 15 years ago
  11. 73c39ab Remove default argument for ImpCastExprToType. Add appropriate argument by Eli Friedman · 15 years ago
  12. 90556e3 Call 'clear()' in ~RopePieceBTreeLeaf(), decrementing the reference by Ted Kremenek · 15 years ago
  13. 6cd2198 Handle substitutions into the "first qualifier in scope" of a by Douglas Gregor · 15 years ago
  14. 8f99993 Revert 84601. Looks like it was causing failures on some systems. by Ted Kremenek · 15 years ago
  15. 0a026af Implement PR5242: don't desugar a type more than once in a diagnostic. This by Chris Lattner · 15 years ago
  16. b54d8af teach FormatDiagnostic to aggregate previously formatted arguments and by Chris Lattner · 15 years ago
  17. 01fbef6 Fix a reference count imbalance in RewriteRope::MakeRopeString(). by Ted Kremenek · 15 years ago
  18. 9cf9f86 code cleanup, convert if tree to switch etc. by Chris Lattner · 15 years ago
  19. adaaad3 Refine the type of the first parameter to block invoke functions. by Mike Stump · 15 years ago
  20. ab22ee9 RegionStore: Use the *default* binding (instead of the *direct* binding) of an Objective-C object by Ted Kremenek · 15 years ago
  21. e973183 retain/release checker: allow 'new', 'copy', 'alloc', 'init' prefix to start before '_' when determining Cocoa fundamental rule. by Ted Kremenek · 15 years ago
  22. 035c46f Builtin candidate minimization for <<=, >>= and the rest. by Fariborz Jahanian · 15 years ago
  23. dd62b15 Parse a simple-template-id following a '~' when calling a destructor, e.g., by Douglas Gregor · 15 years ago
  24. fc06221 The constructor for ASTUnit now takes a DiagnosticClient*, allowing uses of ASTUnit to specify by Ted Kremenek · 15 years ago
  25. 8621d01 Add the built-in candidate set reduction hueristic by Fariborz Jahanian · 15 years ago
  26. 3759a03 Copy conversion of an expression to its base class by Fariborz Jahanian · 15 years ago
  27. 86aa0cd Handle emitting the assignment operator when the lhs is a reference. Fixes PR5227. by Anders Carlsson · 15 years ago
  28. 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
  29. 36c4464 Move Diagnostic/DiagClient/FileManager from Indexer => ASTUnit. by Steve Naroff · 15 years ago
  30. 06d1072 Workaround a bug exposed by the FileCheckify of message-length.c, the caret end by Daniel Dunbar · 15 years ago
  31. ff430e6 AuroraUX toolchain should call GNU assembler not the Solaris assembler. by Edward O'Callaghan · 15 years ago
  32. c575ce7 Avoid std::string concatenation. by Daniel Dunbar · 15 years ago
  33. 259e9cc Twinify CodeGenFunction::CreateTempAlloca by Daniel Dunbar · 15 years ago
  34. a4ee442 Suppress build warning. by Daniel Dunbar · 15 years ago
  35. e1b7ea1 When binding a reference to a temporary, it's important that other temporaries created as on the RHS are destroyed before emitting the dtor for the temporary. by Anders Carlsson · 15 years ago
  36. 4fa2684 When building a cast argument, make sure to bind the result to a temporary. by Anders Carlsson · 15 years ago
  37. 01eb9b9 PR5218: Replace IdentifierInfo::getName with StringRef version, now that clients by Daniel Dunbar · 15 years ago
  38. 9c29bf5 Twinify CGObjCMac, this simplifies the code and should reduce std::string by Daniel Dunbar · 15 years ago
  39. bb378cb Use CK_BitCast for member function pointer casts. Fixes PR5138. by Anders Carlsson · 15 years ago
  40. 5ffe14c Move misc clients to IdentifierInfo StringRef API. by Daniel Dunbar · 15 years ago
  41. e013d68 Move clients to use IdentifierInfo::getNameStart() instead of getName() by Daniel Dunbar · 15 years ago
  42. 0533b30 Support IRgen of OpenCL vector initializers, ensuring the resulting IR is in a by Nate Begeman · 15 years ago
  43. 2782302 It's OK for a pure virtual function to override another pure virtual function. Fixes PR5222. by Anders Carlsson · 15 years ago
  44. c6b2916 Add FloatingCast to getCastKindName's list. by Benjamin Kramer · 15 years ago
  45. 82debc7 Add some more cast kinds. by Anders Carlsson · 15 years ago
  46. 329763b add support for codegening CXXZeroInitValueExprs by Nuno Lopes · 15 years ago
  47. 991f9a7 The AuroraUX toolchain has conflicting wchar_t between the system stdlib.h header and the clang stddef.h header where clang was defining as int where we use long. by Edward O'Callaghan · 15 years ago
  48. 4a630d3 Use sys::Path::eraseFromDisk instead of unlink as suggested by Chris. by Benjamin Kramer · 15 years ago
  49. 49a832b When performing template-substitution into a type, don't just replace the by John McCall · 15 years ago
  50. 6800b33 use DenseSet instead of SmallSet. by Zhongxing Xu · 15 years ago
  51. 2ad3289 Add another two ExtVectorComponent FIXMEs. by Daniel Dunbar · 15 years ago
  52. 4b55b24 Switch ExtVectorElementExpr::getEncodedElementAccess to use StringRef. by Daniel Dunbar · 15 years ago
  53. 210ae98 Simplify HandleModeAttr. by Daniel Dunbar · 15 years ago
  54. 2b0d9a2 Simplify HandleFormatAttr. by Daniel Dunbar · 15 years ago
  55. a2b34eb Add FIXME... maybe Nate will get bored? :) by Daniel Dunbar · 15 years ago
  56. 51bd803 Clone the full Type hierarchy into the TypeLoc hierarchy. Normalize by John McCall · 15 years ago
  57. 1502742 Simplify ExtVectorElementExpr::containsDuplicateElements(). by Daniel Dunbar · 15 years ago
  58. 62a7217 Avoid std::string concatenation. by Daniel Dunbar · 15 years ago
  59. 2596e42 Switch to llvm::HashString. by Daniel Dunbar · 15 years ago
  60. aa546e2 add gentoo x86 2009.1 (gcc 4.3.4) include paths by Nuno Lopes · 15 years ago
  61. 8d1c9ae Fix a crash with qualified member access into a non-type, from Sean Hunt! by Douglas Gregor · 15 years ago
  62. 089407b When type-checking a C++ "new" expression, don't type-check the actual by Douglas Gregor · 15 years ago
  63. 07ab202 When resolving the address of an overloaded function or function template, mark the result as referenced. by Sebastian Redl · 15 years ago
  64. 759986e Don't add implicit casts of explicit address-taking of overloaded functions. by Sebastian Redl · 15 years ago
  65. df5a237 Use StringExtra's HashString instead of BernsteinHash. by Daniel Dunbar · 15 years ago
  66. 6a2b926 teach getCorrespondingUnsignedType how to handle vectors of integers, by Chris Lattner · 15 years ago
  67. d75191f In some dependent contexts, incomplete array types persist into FinalizeDeclaratorGroup. Don't require them to have a complete type. This allows us to compile Hello World with the Apache stdcxx library. If you don't use endl, it even links and runs. by Sebastian Redl · 15 years ago
  68. 12356b1 Fix for PR5190, Credit to Zhanyong Wan. by Edward O'Callaghan · 15 years ago
  69. 76b61cc Avoid std::string thrashing in MultiKeywordSelector::getName(), and simplify. by Daniel Dunbar · 15 years ago
  70. 8fff5f7 Simplify more. by Daniel Dunbar · 15 years ago
  71. 3c2292e Simplify. by Daniel Dunbar · 15 years ago
  72. c0d5672 Use raw_ostream instead of C stdio. by Daniel Dunbar · 15 years ago
  73. 4f90d8d Rewrite AttributeList::getKind to use StringRef API. by Daniel Dunbar · 15 years ago
  74. d777d58 Simplify. by Daniel Dunbar · 15 years ago
  75. 23e47c6 Use raw_ostream for formatting integers, and use IdentifierInfo::getNameStr by Daniel Dunbar · 15 years ago
  76. 781115c Minor cleanup: move typedef out of anonymous namespace (which now contains nothing) and into RemoveDeadBindings. No functionality change. by Ted Kremenek · 15 years ago
  77. 813a97b Write the preprocessor block after we write out types + declarations, by Douglas Gregor · 15 years ago
  78. babac13 Suppress -Asserts warning. by Daniel Dunbar · 15 years ago
  79. f77869f Per discussion with Ted, the 'FromSuper'/'FromSub' logic is invalid. Simplify by Zhongxing Xu · 15 years ago
  80. 9b02034 Fix another static analyzer crash due to a corner case in "folding" symbolic values that are constrained to be a constant. by Ted Kremenek · 15 years ago
  81. 8801beb Actually all regions whose super region is not MemSpaceRegion are of these 3 by Zhongxing Xu · 15 years ago
  82. 9fa31dd Don't crash when dumping pretty stack traces, if the current tok is an by Daniel Dunbar · 15 years ago
  83. 7804bcb Fix PR5211: codegen shouldn't assume that the result of ||/&& is int by Chris Lattner · 15 years ago
  84. 5460d2b Simplify. by Daniel Dunbar · 15 years ago
  85. f6dc5ac Add Ubuntu 9.04 C++ search path. by Daniel Dunbar · 15 years ago
  86. 5cf4876 Add 'UseBumpPtrAllocator' flag to ASTUnit::LoadFromPCHFile() to cause the created ASTContext to use by Ted Kremenek · 15 years ago
  87. 61d60ee Merge the "types" and "declarations" blocks in the precompiled header by Douglas Gregor · 15 years ago
  88. 866b274 Patch to clean up and improve visual display of builtin function ambiguity. by Fariborz Jahanian · 15 years ago
  89. bdfe48a While writing source-location entries to a PCH file, go through an by Douglas Gregor · 15 years ago
  90. 4ce74bd Allow TypeLocs to be fully initialized with a single SourceLocation. This by John McCall · 15 years ago
  91. 1cad602 Use VisibleQuals to control setting of Volatile/Restrict qualifiers on by Fariborz Jahanian · 15 years ago
  92. a1ee0c5 Factor out routines to encode/decode DeclaratorInfos and move them into the by John McCall · 15 years ago
  93. b5deae5 Fix static analyzer crash due to recently add symbolic-value constant folding. The issue was falsely by Ted Kremenek · 15 years ago
  94. 7d1d49d Keep track of whether declararions were loaded from a precompiled by Douglas Gregor · 15 years ago
  95. 3cecc19 dynamic linker arg is incorrectly invoking gnu ld arg syntax instead of svr4 ld syntax in AuroraUX toolchain. by Edward O'Callaghan · 15 years ago
  96. 93034ca Implement derived-to-base AST/code gen. There is a by Fariborz Jahanian · 15 years ago
  97. 52e7108 Add support for a chain of stat caches in the FileManager, rather than by Douglas Gregor · 15 years ago
  98. 5f04881 Implement PR4407 - missing warnings on case value overflow, by Chris Lattner · 15 years ago
  99. 77378b2 ignore 'using' directive in CodeGenFunction::EmitDecl(). this fixes PR5085 by Nuno Lopes · 15 years ago
  100. 528365d fix -ansi in c++: it means -std=c++98 by Nuno Lopes · 15 years ago