1. d125050 obj-c++: Fix a IRGen crash when getter is a reference type. by Fariborz Jahanian · 13 years ago
  2. e75ce16 Add missing case to switch. by Eli Friedman · 13 years ago
  3. 88a4cfd Strip qualifiers off the type of an implicit property defined by only a setter. by John McCall · 13 years ago
  4. 4e7064f [libclang] Introduce a new high level API for indexing clients that assumes by Argyrios Kyrtzidis · 13 years ago
  5. b4a686d Introduce ASTConsumer::HandleTopLevelDeclInObjCContainer which accepts by Argyrios Kyrtzidis · 13 years ago
  6. 6d4740e Have ObjCMethodDecl::getCanonicalDecl take into account redeclared methods. by Argyrios Kyrtzidis · 13 years ago
  7. b05d7b2 Keep track when a ObjC interface/protocol was initially created as a forward reference. by Argyrios Kyrtzidis · 13 years ago
  8. 541ba16 Controlling macros are identifiers, not declarations. by Douglas Gregor · 13 years ago
  9. 5acb0c9 Teach the ARC compiler to not require __bridge casts when by John McCall · 13 years ago
  10. 0ddaeb9 Add a new placeholder type to represent "unbridged" casts in ARC. by John McCall · 13 years ago
  11. 4919dfd Add a helper function for determining whether an expression by John McCall · 13 years ago
  12. a2b4e5d When we end up having to parse the initializer of a C++ member early by Douglas Gregor · 13 years ago
  13. c046f30 Revert r142142: "Make a C-style cast a const-cast, to suppress a GCC warning." by Sebastian Redl · 13 years ago
  14. aa93a87 For modules, all macros that aren't include guards are implicitly by Douglas Gregor · 13 years ago
  15. 05edf66 When building a module, use the macro definitions on the command line by Douglas Gregor · 13 years ago
  16. c35cba4 Fixed merge-mistake where ActOnAccessSpecifier was called twice for every access specifier. The testcase has been changed to catch this too. by Erik Verbruggen · 13 years ago
  17. d82e5d3 Perform an lvalue-to-rvalue conversion on an array index in a __builtin_offsetof expression. by Richard Smith · 13 years ago
  18. 909c555 Slightly simplify a constant expression check. No functional change. by Richard Smith · 13 years ago
  19. 4c3fd51 Add a testcase for r142121 based on an idea from Richard Smith. Thanks! by Chandler Carruth · 13 years ago
  20. 1e12c59 Split apart the state accumulated during constant expression evaluation and the by Richard Smith · 13 years ago
  21. 20cdbeb Add sema checks for calls to functions taking static array parameters by Peter Collingbourne · 13 years ago
  22. 5405b81 Implement overload resolution from init lists for scalar parameter types. by Sebastian Redl · 13 years ago
  23. c223518 Diagnose when omitting braces in direct list-initialization in C++0x. by Sebastian Redl · 13 years ago
  24. 3ff5c86 In the verify-only pass, check that items that don't have an initializer in an init list can be value-initialized, at least when designated initializers are not involved. No test case yet, since early failures cannot be distinguished from late failures until overload resolution works. by Sebastian Redl · 13 years ago
  25. 28bdb14 Check for unavailable declarations in Sema::CanUseDecl. by Sebastian Redl · 13 years ago
  26. d12c9f5 Prove that non-overloaded function calls using init list arguments work. by Sebastian Redl · 13 years ago
  27. 091fffe Drop the Diagnose parameter from Sema::PerformImplicitConversion again and instead use TryImplicitConversion in CheckSingleAssignmentConstraints when that function is in no-diagnostics mode. by Sebastian Redl · 13 years ago
  28. 68ff8d6 Make a C-style cast a const-cast, to suppress a GCC warning. I should fix the underlying issue eventually, but this interface will probably change anyway. by Sebastian Redl · 13 years ago
  29. e409238 Remove the leftover partial comment. by David Blaikie · 13 years ago
  30. 16a6355 Fix a silly bug introduced in r142133. by Chandler Carruth · 13 years ago
  31. 7a09d01 Clean up some cruft in the library path searching logic by making by Chandler Carruth · 13 years ago
  32. 96fda0c Convert inline asm source ranges into clang SourceRanges and print them with the instantiated note. by Benjamin Kramer · 13 years ago
  33. 176d1d7 I fixed this with r142127; these notes now make sense even w/o the caret. by Chandler Carruth · 13 years ago
  34. fe627b0 Hoist the logic I added to compute the macro name into a helper by Chandler Carruth · 13 years ago
  35. a47129e Now that macro expansion notes are real notes and go through the same by Chandler Carruth · 13 years ago
  36. 938ef24 Fix the original bug in our diagnostic printing that got me started on by Chandler Carruth · 13 years ago
  37. 4ba5565 Now that the structure of this is more reasonably laid out, fix a long by Chandler Carruth · 13 years ago
  38. e0376c0 Add a prefix to the existing test to prepare for more tests of other by Chandler Carruth · 13 years ago
  39. 1aaddf2 Fold two run lines into a single logical one, and move them down below by Chandler Carruth · 13 years ago
  40. 2b54d3d Rename this test to a more general name in preparation for adding more by Chandler Carruth · 13 years ago
  41. 5ca2abb Enable CREATE_SUBDIRS for a performance win, because there are a lot of files being generated. by Bill Wendling · 13 years ago
  42. 2ed3495 Add proper doxyments to the entry point routine, and remove a dead parameter. by Chandler Carruth · 13 years ago
  43. 21a869a Persist the TextDiagnostic object across multiple diagnostics as long as by Chandler Carruth · 13 years ago
  44. 7531f57 Clean up the names of all the TextDiagnostic methods (and even a static by Chandler Carruth · 13 years ago
  45. 6ddd887 Move two functions out of the public interface that shouldn't have ever by Chandler Carruth · 13 years ago
  46. db463bb Graduate the TextDiagnostic interface to its own header and source file, by Chandler Carruth · 13 years ago
  47. 1f3839e Move the message printing to a class-static function so that it can be by Chandler Carruth · 13 years ago
  48. 7eb84dc Move the diagnostic level printing into a class static helper. This will by Chandler Carruth · 13 years ago
  49. 03efd2e Rationalize the last bit of "arbitrary" state that is carried between by Chandler Carruth · 13 years ago
  50. 43bcdb2 Avoid duplicate unavailbility diagnostics in objc++. // rdar://10268422 by Fariborz Jahanian · 13 years ago
  51. 86d18c5 Place static initializers on linux into the ".text.startup" section, so the linker can group them together for performance. by Benjamin Kramer · 13 years ago
  52. bb13c32 obj-c++: allow the getter/setter to return/take parameters by Fariborz Jahanian · 13 years ago
  53. 967c118 Internals manual: eliminate mention of System library by Peter Collingbourne · 13 years ago
  54. 1d236ab Replace vectors with arrays. by Benjamin Kramer · 13 years ago
  55. d614040 Neither 'Warning' nor 'NonNote' was a good name for this location... by Chandler Carruth · 13 years ago
  56. 67e2d51 Nuke a bunch of FIXMEs that are now fixed. =] Also, remove the now-dead by Chandler Carruth · 13 years ago
  57. cae9ab1 Sink the include stack printing into the generic text diagnostic by Chandler Carruth · 13 years ago
  58. f54a614 Rationalize some of how the locations of prior diagnostics are tracked by Chandler Carruth · 13 years ago
  59. 9ed3066 Sink the EmitDiagnosticLoc method down to the generic TextDiagnostic by Chandler Carruth · 13 years ago
  60. 60e4a2a Sink the non-caret diagnostic logic down and out of the diagnostic by Chandler Carruth · 13 years ago
  61. 55c6110 Simplify the interface of a helper method in the TextDiagnosticPrinter by Chandler Carruth · 13 years ago
  62. 2840928 Add an accessor for all of the ranges in a diagnostic as an ArrayRef. by Chandler Carruth · 13 years ago
  63. 0aa86c0 Add -Wc++98-compat warning for deduced 'auto' type specifier. by Richard Smith · 13 years ago
  64. 7fe6208 Implement -Wc++98-compat warnings for the parser. by Richard Smith · 13 years ago
  65. 8b11b5e Refactor: remove redundant check for 'final' specifier when parsing class/struct definition. by Richard Smith · 13 years ago
  66. 95fa252 Testcase for half of r142048. by Richard Smith · 13 years ago
  67. 6a2ccc5 Convert stray doxygen comments to regular comments. They logically represent the fields in FunctionProtoType. by Ted Kremenek · 13 years ago
  68. b8706f9 Revert "Move doxygen comments to pair with the actual values." by Ted Kremenek · 13 years ago
  69. d60feeb Use of override keywords in C++98 should produce a warning by default. by Richard Smith · 13 years ago
  70. 05f9931 Rename an ExtWarn to ext_ for consistency. by Richard Smith · 13 years ago
  71. 29e3a31 Don't warn about use of 'final' in ill-formed C++98 code which didn't use by Richard Smith · 13 years ago
  72. c8645e3 Handle an edge case involving the conditional operator and throw expressions. PR10582. by Eli Friedman · 13 years ago
  73. d79e462 Change 'Emit' to 'EmitCaret' which sums up what it *should* be doing. by Chandler Carruth · 13 years ago
  74. 661a996 -Wc++98-compat warnings for the lexer. by Richard Smith · 13 years ago
  75. b75a345 Teach the ASTImporter to perform DeclContext lookups in a way that by Douglas Gregor · 13 years ago
  76. fd5f686 Add c_alignas and cxx_alignas features by Peter Collingbourne · 13 years ago
  77. 60d222f Tweak the C++11 status prose a bit. We still need better user guidance on the standard library issue by Douglas Gregor · 13 years ago
  78. 8eb5b29 Missed tests for half FP support by Anton Korobeynikov · 13 years ago
  79. aa4a99b Provide half floating point support as a storage only type. by Anton Korobeynikov · 13 years ago
  80. 43ac6d0 Switch the C++11 status table from a developer-centric list to a by Douglas Gregor · 13 years ago
  81. ce1846e Attempt to fix Windows buildbot, round 2. by Eli Friedman · 13 years ago
  82. dfa64ba Add template instantiation support for AtomicExpr. by Eli Friedman · 13 years ago
  83. 7c9412c Teach the ASTImporter not to import redundant fields. by Douglas Gregor · 13 years ago
  84. 1c522f7 Attempt to fix buildbot failure on Windows. by Eli Friedman · 13 years ago
  85. d9b0fdf vfork comes from unistd.h by Joerg Sonnenberger · 13 years ago
  86. abb5afa Allow calling ASTUnit::LoadFromCompilerInvocationAction with a previously created ASTUnit. by Argyrios Kyrtzidis · 13 years ago
  87. 2be4607 Misc fixes for atomics. Biggest fix is doing alignment correctly for _Atomic types. by Eli Friedman · 13 years ago
  88. 41be673 -Wc++98-compat: warn on C++11 attributes and alignas. by Richard Smith · 13 years ago
  89. 84ef899 Test for r141985. by Richard Smith · 13 years ago
  90. b8e778d Don't try to diagnose anything when we're passing incomplete types by Douglas Gregor · 13 years ago
  91. e5acd13 Reinstate r141898 (reverted in r141921), without the -Wc++98-compat-variadic-templates flag. Consensus is that -Wc++98-compat is a useful addition to clang, but per-C++11-feature warnings may not be. by Richard Smith · 13 years ago
  92. 85df96c Refactor static analyzer to use simpler interface to constant expression evaluation. by Richard Smith · 13 years ago
  93. fe6f648 [temp.explicit]p1: constexpr cannot be specified in explicit instantiations. by Richard Smith · 13 years ago
  94. f886d6f Fix the CXX_INCLUDE_ROOT case that was out of date with ScanLibDirForGCCTriple. by Rafael Espindola · 13 years ago
  95. 663b26a Harden test for windows paths. by Benjamin Kramer · 13 years ago
  96. b8989f2 Change operator<< for raw_ostream and NamedDecl to take a reference instead of a pointer. by Benjamin Kramer · 13 years ago
  97. 2b5cfbc Simplify code to avoid a useless string copy. by Benjamin Kramer · 13 years ago
  98. bcbca75 Upgrade to PathV2. by Benjamin Kramer · 13 years ago
  99. c95ff94 Add parens to pacify GCC. by Benjamin Kramer · 13 years ago
  100. 597cad6 Fix misplaced comment. by Fariborz Jahanian · 13 years ago