1. 46ab5f5 Add mutex for accessing ASTUnit's global OnDisk data. This may be an issue as libclang could be processing multiple ASTUnit's at once. by Ted Kremenek · 13 years ago
  2. 2006a7f Annotate imprecise FP division with fpaccuracy metadata by Peter Collingbourne · 13 years ago
  3. 0493603 [PCH] Pull the location out of the serialized declarations and put it in the array by Argyrios Kyrtzidis · 13 years ago
  4. 821f8a1 Move ASTUnit's handling of temporary files and the preamble file into a lazily-created static DenseMap. This DenseMap is cleared (and the files erased) via an atexit routine in the case an ASTUnit is not destroyed. Fixes <rdar://problem/10293367>. by Ted Kremenek · 13 years ago
  5. e558289 [libclang] Add comments. by Argyrios Kyrtzidis · 13 years ago
  6. 37a5e89 Make the loading of information attached to an IdentifierInfo from an by Douglas Gregor · 13 years ago
  7. f17126e Teach format string analysis that "%zu" means size_t. by Hans Wennborg · 13 years ago
  8. a1fabef Move these test from checking assembly to checking LLVM IR. Should fix fallout by Nick Lewycky · 13 years ago
  9. f234773 [analyzer] Optimize by not generating empty transitions in CheckerContext by Anna Zaks · 13 years ago
  10. d8d15cf [analyzer] Move enqueueEndOfFunction into CoreEngine. by Anna Zaks · 13 years ago
  11. 4c7b518 [analyzer] Make CoreEngine responsible for enqueueing Stmt Nodes. by Anna Zaks · 13 years ago
  12. 1404950 Make use of the parameter in Sema::ActOnObjCTemporaryExitContainerContext. by Argyrios Kyrtzidis · 13 years ago
  13. 749e95e Fix crash on an @interface nested inside @implementation, rdar://10336158 by Argyrios Kyrtzidis · 13 years ago
  14. 393117c For the "'@end' is missing in implementation context" point at the location of '@'. by Argyrios Kyrtzidis · 13 years ago
  15. 69cd886 Do not warn when weak-import attribute is applied to enum by Fariborz Jahanian · 13 years ago
  16. 0a6433c Disalbe more Microsoft-specific stuff. by Douglas Gregor · 13 years ago
  17. cab62f8 [analyzer] Add getLocationContext to CheckerContext by Anna Zaks · 13 years ago
  18. a21ca0e [analyzer] Remove EmitBasicReport form CheckerContext. by Anna Zaks · 13 years ago
  19. 23c5497 [analyzer] Rename generateNode -> addTransition in CheckerContext by Anna Zaks · 13 years ago
  20. 8bb2881 [analyzer] Remove forward declarations of GenericNodeBuilder by Anna Zaks · 13 years ago
  21. 2ce6450 [analyzer] GenericNodeBuilder -> NodeBuilder. by Anna Zaks · 13 years ago
  22. 3e24434 Objective-c: fix an ir-gen crash where objc messag returns a _Complex by Fariborz Jahanian · 13 years ago
  23. 0edb8c8 Fix this tests on the bots. by Rafael Espindola · 13 years ago
  24. b8020ba Fix pr9614 by not emitting an available_externally function when it calls by Rafael Espindola · 13 years ago
  25. f0508a6 Try to appease the Windows builders by Douglas Gregor · 13 years ago
  26. cda80f8 Pull out conversion on LHS of -> and . into its own function. This happens by Richard Smith · 13 years ago
  27. 0a76324 Eliminate a hang while loading a sequence of redeclarable entities. In by Douglas Gregor · 13 years ago
  28. 996f5d5 Disable on Windows, for real. by Douglas Gregor · 13 years ago
  29. 194af98 Compute the promoted integer type of fixed-width enums correctly. Found by inspection. by Eli Friedman · 13 years ago
  30. d978c92 Correctly perform integral promotions on wchar_t/char16_t/char32_t in C++. <rdar://problem/10309088>. by Eli Friedman · 13 years ago
  31. 31161c7 Fix crash due to missing array-to-pointer decay when instantiating an unresolved by Richard Smith · 13 years ago
  32. 7ab7528 UnresolvedMemberExprs need lvalue-to-rvalue conversions during template by Richard Smith · 13 years ago
  33. 85a3736 Turn off delayed template parsing for this test by Douglas Gregor · 13 years ago
  34. c23482b [analyzer] Remove getEngine() form CheckerContext by Anna Zaks · 13 years ago
  35. f5d6176 [analyzer] Simplify CheckerContext by Anna Zaks · 13 years ago
  36. 643f4d3 [analyzer] Remove unused headers. by Anna Zaks · 13 years ago
  37. a284a7a [analyzer] Make branch for condition callback use CheckerContext by Anna Zaks · 13 years ago
  38. 1f7571b [analyze] Convert EndOfPath callback to use CheckerContext by Anna Zaks · 13 years ago
  39. f299b1b Handle redundant 'typename' on base class specifications. by David Blaikie · 13 years ago
  40. fafbc37c Fix erroneous name-specifiers prior to decltypes better/correctly as per Doug's feedback. by David Blaikie · 13 years ago
  41. e859fbf Restore r142914 and r142915, now with missing file and apparent by John McCall · 13 years ago
  42. 4e6e0e4 Initialize the BaseLoc for decltype base type specifications. by David Blaikie · 13 years ago
  43. 3e1bffd Fix cases where the optional nested-name-specifier erroneously preceeded a decltype-specification when specifying a base type. by David Blaikie · 13 years ago
  44. 20afb0c Support the use of decltype for specifying base types. Fixes PR11216. by David Blaikie · 13 years ago
  45. 50e13c5 Revert r142914 and r142915, due to possibly missing file. by NAKAMURA Takumi · 13 years ago
  46. 4827cf6 Change an int64_t to an intptr_t so that we don't end up with crashes in the back end on large classes on 32-bit. by David Chisnall · 13 years ago
  47. 0cb6837 Pull the pseudo-object stuff into its own file. by John McCall · 13 years ago
  48. 1374a27 Introduce a placeholder type for "pseudo object" by John McCall · 13 years ago
  49. 01a666e Allow the -fno-operator-names option to be passed down to the rest by Eric Christopher · 13 years ago
  50. 53c8b9e Don't forget the lvalue-to-rvalue conversion on the LHS when instantiating a by Richard Smith · 13 years ago
  51. 2922f41 Relax restriction of assigning to 'self' in ARC when a method is attributed with ns_consumes_self. Fixes <rdar://problem/10274056>. by Ted Kremenek · 13 years ago
  52. 811cba7 Tweak printf format string parsing to accept 'hh' conversion specifier to accept any char, not just signed char. Fixes <rdar://problem/10303638>. by Ted Kremenek · 13 years ago
  53. d62f4a5 Undo unnecessary change by Douglas Gregor · 13 years ago
  54. 6f03371 Check for unexpanded parameter packs in the name that guards a by Douglas Gregor · 13 years ago
  55. 71811eb Remove extra copy of contents of header file resulting in a patch being applied twice. Aren't include guards great? by Ted Kremenek · 13 years ago
  56. b80b6a9 Make the -Wc++11-compat warnings ignored by default, so we don't break by Douglas Gregor · 13 years ago
  57. 1db0028 Implement support for dependent Microsoft __if_exists/__if_not_exists by Douglas Gregor · 13 years ago
  58. 2715deb Tidy up testcase from r142890, spotted by Chandler. by Richard Smith · 13 years ago
  59. e125274 Remove another Blackfin test. by Dan Gohman · 13 years ago
  60. 2b99fac Don't forget the lvalue-to-rvalue conversion on the LHS of an -> when rebuilding by Richard Smith · 13 years ago
  61. a34fc03 [PCH] When visiting preprocessed entities, make it possible to avoid deserializing by Argyrios Kyrtzidis · 13 years ago
  62. 527de44 Use assert(0) instead of duplicating the check, suggestion by Anna. by Argyrios Kyrtzidis · 13 years ago
  63. 7c4629c Add source-level dominators analysis. Patch by Guoping Long! by Ted Kremenek · 13 years ago
  64. 290c296 Clean up, as suggested by John. by Richard Smith · 13 years ago
  65. bc8f376 Remove more SystemZ (s390) tests. by Dan Gohman · 13 years ago
  66. 8b82b68 Remove the Blackfin backend. by Dan Gohman · 13 years ago
  67. 4dc0396 Remove the SystemZ backend. by Dan Gohman · 13 years ago
  68. b7b4fa3 Do not drop type qualifiers in -flimit-debug-info mode. by Devang Patel · 13 years ago
  69. 53a12a2 Revert r142844, it broke selfhost. The problem appears to be a missing by Richard Smith · 13 years ago
  70. bdd9d74 Add explanatory comments for ICE checking in C99 mode. by Richard Smith · 13 years ago
  71. f438794 Rework Microsoft __if_exists/__if_not_exists parsing and semantic by Douglas Gregor · 13 years ago
  72. 4592bf7 Don't try to emit CK_LValueBitCast casts as constants. PR9558. by Eli Friedman · 13 years ago
  73. 9b2bb42 When we perform a lookup for a dependent name that is a member of an by Douglas Gregor · 13 years ago
  74. 0962ee5 [analyzer] Node builders cleanup + comments by Anna Zaks · 13 years ago
  75. 36075b9 [analyzer] Remove the old StmtNodeBuilder. by Anna Zaks · 13 years ago
  76. 300f753 [analyzer] Completely remove the global Builder object. by Anna Zaks · 13 years ago
  77. 479f24e [analyzer] Remove more dependencies from global Builder by Anna Zaks · 13 years ago
  78. 892cc7f Constant expression evaluation: evaluate lvalues as lvalues, and rvalues as by Richard Smith · 13 years ago
  79. fd40ad4 Switch to a more natural formatting of the macro name printing. by Chandler Carruth · 13 years ago
  80. 38b4ed4 Constant expression evaluation: factor out handling of ignored values. by Richard Smith · 13 years ago
  81. 2aa40ed In accordance with the C89, C99 and C++98 standards, ICEs can only contain by Richard Smith · 13 years ago
  82. 2ecce33 [analyzer] Convert ExprEngine::visit() to use short lived builders. by Anna Zaks · 13 years ago
  83. e6c41f4 [analyzer] Convert VisitDeclStmt to use local node builder. by Anna Zaks · 13 years ago
  84. 05b1c89 [analyzer] Convert more functions (ex:evalBind()) to iterative builders by Anna Zaks · 13 years ago
  85. 93cda48 [analyzer] Convert VisitUnaryOperator to use short lived Node builders by Anna Zaks · 13 years ago
  86. 1d2c12e [analyzer] Use a temporary builder in CheckerContext. by Anna Zaks · 13 years ago
  87. 8689a00 [analyzer] Pass external Dst set to NodeBuilder by Anna Zaks · 13 years ago
  88. 5c75259 Simplify parsing ellipsis in Parser::ParseAlignArgument, spotted by Doug. by Peter Collingbourne · 13 years ago
  89. 3b60ca1 Constant expression evaluation: factor out VarDecl initializer evaluation and by Richard Smith · 13 years ago
  90. 417a3ec Minor refactoring of my last patch. Per Doug's suggestion. by Fariborz Jahanian · 13 years ago
  91. 60a4a25 [libclang] Make sure we don't try to erase past the StoredDiagnostics vector. by Argyrios Kyrtzidis · 13 years ago
  92. b8217de Fix mismatched new[]/delete[]. by Benjamin Kramer · 13 years ago
  93. 1138bb9 Have -fms-no-extensions turn off -fms-compatibility by Douglas Gregor · 13 years ago
  94. 3ead475 Make -fms-compatibility imply -fms-extensions. Fixes PR11204. by Douglas Gregor · 13 years ago
  95. 320fa62 Remove debugging printfs that some idiot left in. by David Chisnall · 13 years ago
  96. 7ad3a4c Enable experimental support for objc_msgSend with GNUstep ObjC runtime. by David Chisnall · 13 years ago
  97. 2be1379 Revert "Test commit" by NAKAMURA Takumi · 13 years ago
  98. c586188 Test commit by NAKAMURA Takumi · 13 years ago
  99. 7c237a8 Actually rename the file AnalysisContext.cpp -> AnalysisDeclContext.cpp by Chandler Carruth · 13 years ago
  100. 579ee4f Rename AnalysisContext to AnalysisDeclContext. Not only is this name more accurate, but it frees up the name AnalysisContext for other uses. by Ted Kremenek · 13 years ago