1. 08db94f Remove debugging assert. by David Blaikie · 12 years ago
  2. 66cff72 Provide the correct mangling and linkage for certain unnamed nested classes. by David Blaikie · 12 years ago
  3. 8c88953 Remove another questionable use of hasTrivial*. The relevant thing for this by Richard Smith · 12 years ago
  4. 0a26d76 [ms] Make mangleIntegerLiteral less aware of exact type of the literal. by Nico Weber · 12 years ago
  5. 5f9a7e3 Remove abuse of hasTrivial*, and fix miscompile wherein global arrays with by Richard Smith · 12 years ago
  6. 731de31 80 cols & unnecessary braces from r167736. by David Blaikie · 12 years ago
  7. 383ec17 Correct printing of nested anonymous type member accesses. by David Blaikie · 12 years ago
  8. c6b82c3 Remove calls to getMostRecentDecl. The case they were added for in r117526 are by Rafael Espindola · 12 years ago
  9. 538fb98 In Sema::MergeVarDecl we handle merging of storage classes and visibility by Rafael Espindola · 12 years ago
  10. 229d47a Rework my implementation of circular-reference finding to not use by Douglas Gregor · 12 years ago
  11. d777e28 Diagnostic circular inheritance involving dependent base classes. We by Douglas Gregor · 12 years ago
  12. ecd27bf Add a FileCharacteristic parameter to SourceManager::createFileIDForMemBuffer by Argyrios Kyrtzidis · 12 years ago
  13. c8e78b2 [ms] Implement int64_t version of mangleNumber() in terms of the APSInt version. by Nico Weber · 12 years ago
  14. e95b46b [Windows] Fix mangling of number literal '0' by Nico Weber · 12 years ago
  15. c2fc67e Fix a source range regression in C++ new expressions with call initializers. by David Blaikie · 12 years ago
  16. 23700f0 Allow to pass from syntactic form of InitListExpr to semantic form (just as viceversa). No functionality change. by Abramo Bagnara · 12 years ago
  17. 13fd684 Fixed range of implicit MemberExpr. by Abramo Bagnara · 12 years ago
  18. cb7b45e Create helper functions in StmtDumper for outputting the indentation, newlines, and brackets. by Manuel Klimek · 12 years ago
  19. 5305641 PR13552: Fix the end location of a CXXNewExpr. by David Blaikie · 12 years ago
  20. 1e905da Remove a const_cast by propagating constness to the member function. by Dmitri Gribenko · 12 years ago
  21. 54c4545 Fix the template type diffing to handle integral template arguments. by Richard Trieu · 12 years ago
  22. ef4b666 Fix an incorrect assert, the LHS can be an LValue. by Rafael Espindola · 12 years ago
  23. e4a990f [libclang] Introduce clang_Cursor_getReceiverType which returns the CXType for by Argyrios Kyrtzidis · 12 years ago
  24. e63aedd Address Jordan's review: comments, spaces. by Anna Zaks · 12 years ago
  25. 0a7dd83 Move two helper functions to AST so that sema can use them. by Rafael Espindola · 12 years ago
  26. 8c7a185 Fix indentation. by Eli Friedman · 12 years ago
  27. f596760 When an externally-supplied record layout has a size that clearly by Douglas Gregor · 12 years ago
  28. 11ce5fe Match up anonymous structs/unions in the ASTImporter. Previously, we'd by Douglas Gregor · 12 years ago
  29. 47395d9 Eliminate some longstanding FIXMEs regarding variadic templates in the by Douglas Gregor · 12 years ago
  30. 347f64f In the ASTImporter, don't try to emit a diagnostic if we're not by Douglas Gregor · 12 years ago
  31. 3304c43 CommentDumper: reorder members and add a comment. by Dmitri Gribenko · 12 years ago
  32. a45451d Don't print scope qualifiers for references to a type defined locally in a function. Patch by Grzegorz Jablonski. by Eli Friedman · 12 years ago
  33. 6d919fb Address feedback from Eli Friedman on r166522. by Matt Beaumont-Gay · 12 years ago
  34. c7db84d Don't emit -Wunused-value warnings from macro expansions. by Matt Beaumont-Gay · 12 years ago
  35. 02c23eb Make DiagnosticOptions intrusively reference-counted, and make sure by Douglas Gregor · 12 years ago
  36. a7a38cb Fix pretty-printing pseudo-destructor calls. Patch by Grzegorz Jablonski. by Eli Friedman · 12 years ago
  37. 84c3b97 Fix -Wunused-value to not warn on expressions that have unresolved lookups due by Matt Beaumont-Gay · 12 years ago
  38. 03e6fda PR14141 (part of DR1351): An implicitly-deduced "any" exception specification by Richard Smith · 12 years ago
  39. e1aebe1 Pretty-print a ParenListExpr in a variable initializer correctly. Patch by Grzegorz Jablonski. by Eli Friedman · 12 years ago
  40. 8cfabf2 Remove const_casts by propagating constness down to called functions. by Dmitri Gribenko · 12 years ago
  41. 820e9a7 DR1511: A const volatile global does not implicitly get internal linkage like a by Richard Smith · 12 years ago
  42. 25c9bc1 Use the type as written when pretty-printing C-style casts. Patch by Grzegorz Jablonski. by Eli Friedman · 12 years ago
  43. 262e60c [doc parsing] use getParamName to access parameter by Fariborz Jahanian · 12 years ago
  44. eafa9d4 Remove check which incorrectly suppressed printing an identifier in type printing. Patch by Benoit Perrot. by Eli Friedman · 12 years ago
  45. d03ef04 Fix AST pretty-printing for C++ new expressions with placement arguments with default values. by Eli Friedman · 12 years ago
  46. b36ea37 Factor CollectClassPropertyImplementations out of Sema into AST by Anna Zaks · 12 years ago
  47. b1502bc DR1442: In a range-based for statement, namespace 'std' is not an associated by Richard Smith · 12 years ago
  48. 278eafa Fixed some corner cases due to implicit int TypeLoc and simplified the logic. by Abramo Bagnara · 12 years ago
  49. 49c67c4 Put used="1" on all used declarations in the XML dumper. This allows us to by Nick Lewycky · 12 years ago
  50. 9be36ab DR1535: only potentially-evaluated typeid expressions are disallowed in constant by Richard Smith · 12 years ago
  51. 1bfb00d [Doc parsing]: This patch adds <Declaration> tag to by Fariborz Jahanian · 12 years ago
  52. 915c07d Fix pretty-printing for variables declared in a condition. Patch by Grzegorz Jablonski. by Eli Friedman · 12 years ago
  53. 263366f Add pnaclcall convention to Native Client targets. by Derek Schuff · 12 years ago
  54. e54cba1 [ms-inline asm] Move some logic around to simplify the interface between the by Chad Rosier · 12 years ago
  55. d954ab4 Note deleted functions when dumping vtables. by David Blaikie · 12 years ago
  56. b2e8001 Fixed ClassTemplateSpecializationDecl source range. by Abramo Bagnara · 12 years ago
  57. ac8ea05 Fixed FunctionTypeLoc range for trailing return type. by Abramo Bagnara · 12 years ago
  58. 88d285c Fixes location of overriding declaration with no comment of their own. by Fariborz Jahanian · 12 years ago
  59. 6553c68 structured document comment: patch to provide comment for overriding function by Fariborz Jahanian · 12 years ago
  60. 5f608ae Make -mms-bitfields behave consistently. by Eli Friedman · 12 years ago
  61. a143a9d Fix -ast-print for uses of operator->. by Eli Friedman · 12 years ago
  62. 71793ef Add dump support for comments coming from by Fariborz Jahanian · 12 years ago
  63. 749ace6 search for overridden methods with comment when overriding method by Fariborz Jahanian · 12 years ago
  64. 41c1f21 Teach GetBaseType() about BlockPointerTypes. by Ted Kremenek · 12 years ago
  65. 0142f0c Handle gnu_inline in c++ in a gcc compatible way. Original patch by Tobias by Rafael Espindola · 12 years ago
  66. 50d2b26 ObjCMethodDecl::findPropertyDecl: bail out early if not an instance method. by Jordan Rose · 12 years ago
  67. c5f8046 Add codegen support for __uuidof(). by Nico Weber · 12 years ago
  68. bf967be [Doc parsing] This patch searches overridden objc/c++ by Fariborz Jahanian · 12 years ago
  69. 04bec39 Move Sema::PropertyIfSetterOrGetter to ObjCMethodDecl::findPropertyDecl. by Jordan Rose · 12 years ago
  70. 1e4691b Rename ObjCMethodDecl::isSynthesized to isPropertyAccessor. by Jordan Rose · 12 years ago
  71. eae5a820 Fix PR 11709: Change the definition of va_list to meet AAPCS requirement by Logan Chien · 12 years ago
  72. bc0a2bb Simplify the code using SmallVector::append(), as suggested by Benjamin Kramer. by Argyrios Kyrtzidis · 12 years ago
  73. 740ae67 Move the functionality that looks for ObjC overridden methods from by Argyrios Kyrtzidis · 12 years ago
  74. 5456b0fe When we load a function or method body from an AST file, we check by Douglas Gregor · 12 years ago
  75. 21c3607 Move the logic that searches for overridden methods from libclang to by Argyrios Kyrtzidis · 12 years ago
  76. 38eb1e1 When storing the C++ overridden methods, store them once for the by Argyrios Kyrtzidis · 12 years ago
  77. d69f31c In VarDecl::getSourceRange() make sure to check that the source location by Argyrios Kyrtzidis · 12 years ago
  78. 0bea863 StringRef-ify Binary/UnaryOperator::getOpcodeStr by David Blaikie · 12 years ago
  79. d190057 Expose __builtin_bswap16. by Benjamin Kramer · 12 years ago
  80. 1e5101e ParentMap: Restore the ability to update an existing map. by Jordan Rose · 12 years ago
  81. abd5fa2 Added forgotten break. by Abramo Bagnara · 12 years ago
  82. 59c0a81 Fixed FunctionTypeLoc source range. by Abramo Bagnara · 12 years ago
  83. acf0bb4 Add missing comment for mangling. by Nick Lewycky · 12 years ago
  84. 7b2f93c CodeGen: Fix a silly typo when emitting subs of block addresses. by Benjamin Kramer · 12 years ago
  85. 385b91f When mangling an APSInt with the ms abi, make sure to look at all nibbles. by Nico Weber · 12 years ago
  86. c950bc9 While I'm here, resync a %select with the enum definition it selects on. by Nico Weber · 12 years ago
  87. 2225556 Move expression mangling in the microsoft mangler to its own function. by Nico Weber · 12 years ago
  88. 88a374a Replace a default: with an explicit list of cases. No functionality change. by Nico Weber · 12 years ago
  89. d3d9816 Introduce ASTConsumer::HandleImplicitImportDecl() callback that is invoked by Argyrios Kyrtzidis · 12 years ago
  90. 041ce8e Teach getCXXRecordDeclForPointerType about references. by Jordan Rose · 12 years ago
  91. be9af12 Add FP_CONTRACT support for clang. by Lang Hames · 12 years ago
  92. 01cad02 Fix treatment of case which came up on std-proposals@: 'void' is permitted in core constant expressions, despite not being a literal type. by Richard Smith · 12 years ago
  93. bbff82f Move isObjCSelf into Expr. by Anna Zaks · 12 years ago
  94. 1952354 Move the 'find macro by spelling' infrastructure to the Preprocessor class and by Dmitri Gribenko · 12 years ago
  95. 3c88301 Update template type diffing to handle qualifiers. Differing qualifiers will by Richard Trieu · 12 years ago
  96. 70d38f3 Allow __builtin_bswap32/64 in constant expressions, like gcc does. Patch by Tijl Coosemans! by Richard Smith · 12 years ago
  97. 65eaecf Clean up part of template type diffing. Moved repeated code to separate by Richard Trieu · 12 years ago
  98. 919a2d7 Fix a regression from r164656. by Eli Friedman · 12 years ago
  99. ad0ce53 Make getDefaultSynthIvarName() a member of ObjCPropertyDecl. by Anna Zaks · 12 years ago
  100. 023bd7d Pass PrintingPolicy by reference, copying it isn't cheap. by Benjamin Kramer · 12 years ago