1. dd67723 Simplify RecordDeclCXX::setBases slightly. No functional change. by Richard Smith · 13 years ago
  2. f4072ae objc: more changes in use of IBOutletCollection attribute. by Fariborz Jahanian · 13 years ago
  3. 4467901 [arcmt] Rewrite attributes in extensions as well. rdar://9992142 by Argyrios Kyrtzidis · 13 years ago
  4. b98ffde Set the objc "property attributes as written" for extension properties as well. by Argyrios Kyrtzidis · 13 years ago
  5. f106f0e In C++11, a class's members are allowed to be nominated as friends. by Richard Smith · 13 years ago
  6. c19981c [driver] Make the driver to link the simulator arclite lib when passing -mios-simulator-version-min. by Argyrios Kyrtzidis · 13 years ago
  7. 7a81e41 objc: diagnose invalid argument to an by Fariborz Jahanian · 13 years ago
  8. 46d1ea4 [libclang] Since an objc extension semantically continues the interface of the class by Argyrios Kyrtzidis · 13 years ago
  9. 341350e Make it possible to compute the type of 'this' without capturing by Douglas Gregor · 13 years ago
  10. a50216c Add code completions for C++0x expressions by Douglas Gregor · 13 years ago
  11. aca19be [libclang] Index implicit property references. by Argyrios Kyrtzidis · 13 years ago
  12. c0f5b75 [libclang] When printing the diagnostic print it with a new line. by Argyrios Kyrtzidis · 13 years ago
  13. 9fbbf14 [libclang] Index method references. by Argyrios Kyrtzidis · 13 years ago
  14. 474202f Use llvm::Triple's methods to parse FreeBSD version numbers. by Benjamin Kramer · 13 years ago
  15. 36e7608 Another attempt at fixing format-strings-fixit.c. by Hans Wennborg · 13 years ago
  16. 4886e32 Disable the ssize_t test in format-strings-fixit.c. by Hans Wennborg · 13 years ago
  17. a7da215 Suggest %zu for size_t args to printf. by Hans Wennborg · 13 years ago
  18. 5f31f08 Switch to the C++11 warning flags in tests. Patch by Ahmed Charles! by David Blaikie · 13 years ago
  19. 5090e9f Update documentation to use "C++11" instead of "C++0x" by David Blaikie · 13 years ago
  20. ee1c68a Don't format the code completion for parameters of block literal by Douglas Gregor · 13 years ago
  21. 2dc7ece Add -Wc++11-compat warning for an inline specifier on an explicit instantiation. by Richard Smith · 13 years ago
  22. 4e8ea0b When transforming the arguments for a C++ "new" expression, make sure by Douglas Gregor · 13 years ago
  23. 3e2e91e Refactor the checking for explicit template instantiations being performed in by Richard Smith · 13 years ago
  24. d80d90d Argyrios says this change is required for safety under PTH. Me, I believe him. by John McCall · 13 years ago
  25. 66f2846 Revert accidental commit. by Eli Friedman · 13 years ago
  26. 97c0aef Rewrite parts of MS ABI C++ layout. Based on work by r4start; I ended up doing this while I was trying to review his patch. by Eli Friedman · 13 years ago
  27. 3eff321 Fix several bugs with #pragma clang arc_cf_code_audited and macros. by John McCall · 13 years ago
  28. dceb11f Revert r142311, -mios-simulator-version-min does not work correctly. by Argyrios Kyrtzidis · 13 years ago
  29. 85def35 In hasPlaceholderType(Kind) and isSpecificPlaceholderType(Kind), assert by John McCall · 13 years ago
  30. b56e6ad Remove the hack where we sniff the __IPHONE_OS_VERSION_MIN_REQUIRED define. by Argyrios Kyrtzidis · 13 years ago
  31. ea01143 Perform lvalue-to-rvalue conversions on __builtin_offsetof array argument index by Richard Smith · 13 years ago
  32. 01b2b9b [arcmt] In ARC default for properties is 'strong' so just remove a 'retain' if possible, by Argyrios Kyrtzidis · 13 years ago
  33. 841804b Add -Wc++98-compat warnings for uses of the new keywords 'alignof', 'char16_t', by Richard Smith · 13 years ago
  34. ea523d7 Wire up support for the controlling the extended dwarf .file directive. With by Nick Lewycky · 13 years ago
  35. 3de2fc4 Silence a -Wc++0x-narrowing warning by Matt Beaumont-Gay · 13 years ago
  36. 19706f8 Implement -static-libstdc++ for linux. by Rafael Espindola · 13 years ago
  37. 36180f3 Try fixing MSVC compiler errors. by Argyrios Kyrtzidis · 13 years ago
  38. 7f20c7c Add missing newline. by Eli Friedman · 13 years ago
  39. 66d5ce1 Move about 20 random diagnostics under -W flags. Patch by Ahmed Charles! by Ted Kremenek · 13 years ago
  40. 454b57a Initial implementation of __atomic_is_lock_free. The input is the size of an atomic type rather than an atomic type itself just to save some implementation pain; I can change that if it seems worthwhile. by Eli Friedman · 13 years ago
  41. abf3ac7 Implement -static-libgcc on linux and refactor the code responsible for adding by Rafael Espindola · 13 years ago
  42. 8121639 Substitute for arguments in method calls -- functionality by DeLesley Hutchins · 13 years ago
  43. 9f80a97 Substitute for arguments in method calls -- refactoring by DeLesley Hutchins · 13 years ago
  44. fe0a0fb Refactor __attribute__ parsing, and add a diagnostic if the r_paren at the end by Richard Smith · 13 years ago
  45. abd2a3e Code completion chunks are pod-like. by Benjamin Kramer · 13 years ago
  46. 6ec9643 The comparison of two vectors should return a signed result. hasIntegerRepresentation() used to always return false for vectors, but since it was changed, it also by Tanya Lattner · 13 years ago
  47. d125050 obj-c++: Fix a IRGen crash when getter is a reference type. by Fariborz Jahanian · 13 years ago
  48. e75ce16 Add missing case to switch. by Eli Friedman · 13 years ago
  49. 88a4cfd Strip qualifiers off the type of an implicit property defined by only a setter. by John McCall · 13 years ago
  50. 4e7064f [libclang] Introduce a new high level API for indexing clients that assumes by Argyrios Kyrtzidis · 13 years ago
  51. b4a686d Introduce ASTConsumer::HandleTopLevelDeclInObjCContainer which accepts by Argyrios Kyrtzidis · 13 years ago
  52. 6d4740e Have ObjCMethodDecl::getCanonicalDecl take into account redeclared methods. by Argyrios Kyrtzidis · 13 years ago
  53. b05d7b2 Keep track when a ObjC interface/protocol was initially created as a forward reference. by Argyrios Kyrtzidis · 13 years ago
  54. 541ba16 Controlling macros are identifiers, not declarations. by Douglas Gregor · 13 years ago
  55. 5acb0c9 Teach the ARC compiler to not require __bridge casts when by John McCall · 13 years ago
  56. 0ddaeb9 Add a new placeholder type to represent "unbridged" casts in ARC. by John McCall · 13 years ago
  57. 4919dfd Add a helper function for determining whether an expression by John McCall · 13 years ago
  58. a2b4e5d When we end up having to parse the initializer of a C++ member early by Douglas Gregor · 13 years ago
  59. c046f30 Revert r142142: "Make a C-style cast a const-cast, to suppress a GCC warning." by Sebastian Redl · 13 years ago
  60. aa93a87 For modules, all macros that aren't include guards are implicitly by Douglas Gregor · 13 years ago
  61. 05edf66 When building a module, use the macro definitions on the command line by Douglas Gregor · 13 years ago
  62. 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
  63. d82e5d3 Perform an lvalue-to-rvalue conversion on an array index in a __builtin_offsetof expression. by Richard Smith · 13 years ago
  64. 909c555 Slightly simplify a constant expression check. No functional change. by Richard Smith · 13 years ago
  65. 4c3fd51 Add a testcase for r142121 based on an idea from Richard Smith. Thanks! by Chandler Carruth · 13 years ago
  66. 1e12c59 Split apart the state accumulated during constant expression evaluation and the by Richard Smith · 13 years ago
  67. 20cdbeb Add sema checks for calls to functions taking static array parameters by Peter Collingbourne · 13 years ago
  68. 5405b81 Implement overload resolution from init lists for scalar parameter types. by Sebastian Redl · 13 years ago
  69. c223518 Diagnose when omitting braces in direct list-initialization in C++0x. by Sebastian Redl · 13 years ago
  70. 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
  71. 28bdb14 Check for unavailable declarations in Sema::CanUseDecl. by Sebastian Redl · 13 years ago
  72. d12c9f5 Prove that non-overloaded function calls using init list arguments work. by Sebastian Redl · 13 years ago
  73. 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
  74. 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
  75. e409238 Remove the leftover partial comment. by David Blaikie · 13 years ago
  76. 16a6355 Fix a silly bug introduced in r142133. by Chandler Carruth · 13 years ago
  77. 7a09d01 Clean up some cruft in the library path searching logic by making by Chandler Carruth · 13 years ago
  78. 96fda0c Convert inline asm source ranges into clang SourceRanges and print them with the instantiated note. by Benjamin Kramer · 13 years ago
  79. 176d1d7 I fixed this with r142127; these notes now make sense even w/o the caret. by Chandler Carruth · 13 years ago
  80. fe627b0 Hoist the logic I added to compute the macro name into a helper by Chandler Carruth · 13 years ago
  81. a47129e Now that macro expansion notes are real notes and go through the same by Chandler Carruth · 13 years ago
  82. 938ef24 Fix the original bug in our diagnostic printing that got me started on by Chandler Carruth · 13 years ago
  83. 4ba5565 Now that the structure of this is more reasonably laid out, fix a long by Chandler Carruth · 13 years ago
  84. e0376c0 Add a prefix to the existing test to prepare for more tests of other by Chandler Carruth · 13 years ago
  85. 1aaddf2 Fold two run lines into a single logical one, and move them down below by Chandler Carruth · 13 years ago
  86. 2b54d3d Rename this test to a more general name in preparation for adding more by Chandler Carruth · 13 years ago
  87. 5ca2abb Enable CREATE_SUBDIRS for a performance win, because there are a lot of files being generated. by Bill Wendling · 13 years ago
  88. 2ed3495 Add proper doxyments to the entry point routine, and remove a dead parameter. by Chandler Carruth · 13 years ago
  89. 21a869a Persist the TextDiagnostic object across multiple diagnostics as long as by Chandler Carruth · 13 years ago
  90. 7531f57 Clean up the names of all the TextDiagnostic methods (and even a static by Chandler Carruth · 13 years ago
  91. 6ddd887 Move two functions out of the public interface that shouldn't have ever by Chandler Carruth · 13 years ago
  92. db463bb Graduate the TextDiagnostic interface to its own header and source file, by Chandler Carruth · 13 years ago
  93. 1f3839e Move the message printing to a class-static function so that it can be by Chandler Carruth · 13 years ago
  94. 7eb84dc Move the diagnostic level printing into a class static helper. This will by Chandler Carruth · 13 years ago
  95. 03efd2e Rationalize the last bit of "arbitrary" state that is carried between by Chandler Carruth · 13 years ago
  96. 43bcdb2 Avoid duplicate unavailbility diagnostics in objc++. // rdar://10268422 by Fariborz Jahanian · 13 years ago
  97. 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
  98. bb13c32 obj-c++: allow the getter/setter to return/take parameters by Fariborz Jahanian · 13 years ago
  99. 967c118 Internals manual: eliminate mention of System library by Peter Collingbourne · 13 years ago
  100. 1d236ab Replace vectors with arrays. by Benjamin Kramer · 13 years ago