1. 2bbcd5c ARC: make assignment to 'self' within class methods illegal. Fixes <rdar://problem/10416568>. by Ted Kremenek · 13 years ago
  2. 8a0ace6 Fix grammaro by Douglas Gregor · 13 years ago
  3. ef84af9 Do not create sub_dirs. This breaks the CSS links for the website and produces really long URLS. by Tanya Lattner · 13 years ago
  4. f695a69 Add __has_feature(cxx_defaulted_functions) for querying "defaulted by Douglas Gregor · 13 years ago
  5. 5090e9f Update documentation to use "C++11" instead of "C++0x" by David Blaikie · 13 years ago
  6. 5ca2abb Enable CREATE_SUBDIRS for a performance win, because there are a lot of files being generated. by Bill Wendling · 13 years ago
  7. 967c118 Internals manual: eliminate mention of System library by Peter Collingbourne · 13 years ago
  8. fd5f686 Add c_alignas and cxx_alignas features by Peter Collingbourne · 13 years ago
  9. d1cb2dc Fix grammaro by Douglas Gregor · 13 years ago
  10. d768150 Implement built-in macro '__has_warning', which allows one to query if a warning flag is valid. Fixes <rdar://problem/10263428>. by Ted Kremenek · 13 years ago
  11. 4a8dfb5 Introduce BalancedDelimiterTracker, to better track open/close by Douglas Gregor · 13 years ago
  12. 92d6d40 Driver: Add support for a new -nostdlibinc option. by Daniel Dunbar · 13 years ago
  13. 72a81d2 Now that we support move generation, mention this in the language extension and C++ status pages. Also update the C++ status for default functions, which are complete now that we can generate move functions, and destructor exception specifications, which I did a while ago. by Sebastian Redl · 13 years ago
  14. 26e0b30 Revert my --working-directory option, which wasn't well thought through. by Daniel Dunbar · 13 years ago
  15. 1f634c6 Add a section detailing the steps required to add an expression or by Douglas Gregor · 13 years ago
  16. 63bc59b Driver: Add a --working-directory option which can be used to cause the compiler by Daniel Dunbar · 13 years ago
  17. 0c706c2 Add list initialization for complex numbers in C. Essentially, this allows "_Complex float x = {1.0f, 2.0f};". See changes to docs/LanguageExtensions.html for a longer description. by Eli Friedman · 13 years ago
  18. aebb653 Document __has_feature(objc_instancetype). by Douglas Gregor · 13 years ago
  19. 5471bc8 Allow C++0x enumerations with a fixed underlying type in by Douglas Gregor · 13 years ago
  20. e97179c Implement the Objective-C 'instancetype' type, which is an alias of by Douglas Gregor · 13 years ago
  21. dad879a Update mingw-w64 part of the user manual, from Ruben Van Boxem! by Douglas Gregor · 13 years ago
  22. ece3894 Add and document __has_feature values for the remaining C++0x by Douglas Gregor · 13 years ago
  23. f391fa7 Add documentation on -Weverything. by Ted Kremenek · 13 years ago
  24. b9326ec docs/doxygen.css: Import .memitem, .memproto and .memdoc from llvm/doxygen. by NAKAMURA Takumi · 13 years ago
  25. b51e031 Thread Safety: Added basic argument parsing for all new attributes. by Caitlin Sadowski · 13 years ago
  26. e1f6dea Add a __has_feature macro for generalized initializers, turned off by Sean Hunt · 13 years ago
  27. db33e14 Added basic parsing for all remaining attributes, thread safety by Caitlin Sadowski · 13 years ago
  28. 73cbbc8 Thread safety: Fix typo in documentation by Caitlin Sadowski · 13 years ago
  29. fdde9e7 Added parsing for guarded_var, pt_guarded_var, lockable, by Caitlin Sadowski · 13 years ago
  30. dc7c5ad Document the existing objc_precise_lifetime attribute. by John McCall · 13 years ago
  31. 1fba828 Thanks to Chandler for reminding me to update the documentation for the by Sean Hunt · 13 years ago
  32. 4f26495 Document the behavior of property modifiers in ARC. by John McCall · 13 years ago
  33. c51af6c Fix another typo (int -> id for captured_obj). by David Chisnall · 13 years ago
  34. cfe1f05 Fix example: variable is initialized to 10 and then has 11 stored in it, but in the expanded version is initialized to 11. by David Chisnall · 13 years ago
  35. 2fad783 Move and elaborate the section on objc_arc_weak_unavailable. by John McCall · 13 years ago
  36. a236c0e Update document for objc_arc_weak_unavailable attribute by Fariborz Jahanian · 13 years ago
  37. acd4aaf Update document on use of ns_returns_not_retained by Fariborz Jahanian · 13 years ago
  38. a26b2e5 Update documentation for // rdar://9619861 by Fariborz Jahanian · 13 years ago
  39. d322429 Update docs to remove reference to OverloadedFunctionDecl and replace it with DeclContext::lookup_result. by Jonathan D. Turner · 13 years ago
  40. de7738c fix typo by Chris Lattner · 13 years ago
  41. 0e5abb8 Remove reference to the Index library by Douglas Gregor · 13 years ago
  42. c3151c4 Remove doxygen.cfg to prevent accidental commits, it is generated from doxygen.cfg.in. by Benjamin Kramer · 13 years ago
  43. 1df396d Revert accidental commit. by Evan Cheng · 13 years ago
  44. 693769c SubtargetFeature.h has been moved to MC. by Evan Cheng · 13 years ago
  45. d962499 Add documentation about __has_feature(cxx_delegationg_constructors) by Sean Hunt · 13 years ago
  46. 64f857b Fix a minor copy-paste-o that broke the stylesheets by Sean Hunt · 13 years ago
  47. 7e98b47 Fix a bunch of HTML compliance problems with LanguageExtensions.html by Sean Hunt · 13 years ago
  48. 647ba1b Revert "-fexceptions does not, in fact, enable C++ exceptions" by Sean Hunt · 13 years ago
  49. 4b4ba8b -fexceptions does not, in fact, enable C++ exceptions by Sean Hunt · 13 years ago
  50. 085d09d More clarifications. by John McCall · 13 years ago
  51. 3914a30 Improve the intro to the runtime-functions section. by John McCall · 13 years ago
  52. 98a48cf Describe the ARC runtime support calls. by John McCall · 13 years ago
  53. be16b89 Clarify the semantics of init methods, and point out a few places by John McCall · 13 years ago
  54. f3d08a6 A couple of minor changes to the ARC spec, plus a new section by John McCall · 13 years ago
  55. 4020cae Objective-C++ ARC: eliminate the utterly unjustified loophole that by Douglas Gregor · 13 years ago
  56. 54fb28a Fix a grammaro by Douglas Gregor · 13 years ago
  57. e559ca1 Objective-ARC++: infer template type arguments of by Douglas Gregor · 13 years ago
  58. f85e193 Automatic Reference Counting. by John McCall · 13 years ago
  59. 8246702 The specification document for the new ObjC Automatic Reference Counting by John McCall · 13 years ago
  60. f069c9e remove the index page, we have dox now! by Chris Lattner · 13 years ago
  61. 741be6a mention new VLA behavior in gnu* vs c* mode dox. by Chris Lattner · 13 years ago
  62. c31e016 fix example as per rdar://problem/9461587 by Blaine Garst · 13 years ago
  63. 248f973 Update extensions section of the docs to account for wacky gcc stuff we did end up implementing. by Eli Friedman · 13 years ago
  64. 926df6c Implement Objective-C Related Result Type semantics. by Douglas Gregor · 13 years ago
  65. 052fe84 Remove derelict documentation. by Ted Kremenek · 13 years ago
  66. 477aab6 A StringRef-ication of the DiagnosticIDs API and internals. by Argyrios Kyrtzidis · 13 years ago
  67. 84ee2ee Audit and finish the implementation of C++0x nullptr, fixing two by Douglas Gregor · 13 years ago
  68. c9471b0 Introduce the -fdiagnostics-format=xxx option to control how Clang by Douglas Gregor · 13 years ago
  69. c1b5fa4 Introduce __has_extension macro by Peter Collingbourne · 13 years ago
  70. 04bb657 Delete doxygen.cfg, and use cwd-relative paths in doxygen.cfg.in. by Peter Collingbourne · 13 years ago
  71. 7822ee3 Implement CWG1170, which makes access-control errors into template by Douglas Gregor · 13 years ago
  72. 3e4c6c4 Implement support for C++0x alias templates. by Richard Smith · 13 years ago
  73. e2bb7b9 Documentation for -Oz; Updated synopsis and item. by Chad Rosier · 13 years ago
  74. 4525ae5 Add documentation for -Oz flag. by Chad Rosier · 13 years ago
  75. a391a46 Add __has_feature(cxx_range_for) check for C++11 range-based for loop. by Richard Smith · 13 years ago
  76. fc8f0e1 fix a bunch of comment typos found by codespell. Patch by by Chris Lattner · 13 years ago
  77. f111d93 C1X: implement generic selections by Peter Collingbourne · 13 years ago
  78. 23aa9c8 add a __sync_swap builtin to fill out the rest of the __sync builtins. by Chris Lattner · 13 years ago
  79. 02e266b typo fix + expand by Chris Lattner · 13 years ago
  80. 4cf4b59 Minor format fix. by Evan Cheng · 13 years ago
  81. fda026b Document -ftrap-function= option by Evan Cheng · 13 years ago
  82. ddf68ff docs/UsersManual.html: Fix some inconsistent HTML elements. by NAKAMURA Takumi · 13 years ago
  83. 4462636 docs/UsersManual.html: "&quot;"ize in a paragraph. A few unpaired quotations might confuse HTML-aware text edtors. by NAKAMURA Takumi · 13 years ago
  84. a75fdb2 docs/UsersManual.html: Add cygming notes. by NAKAMURA Takumi · 13 years ago
  85. c8b9f79 we can now claim to fully support the override control feature in C++0x. by Anders Carlsson · 13 years ago
  86. c70e193 and now there are 3! by Chris Lattner · 13 years ago
  87. 38448d3 Code modification hints have been known as fix-it hints for almost by Peter Collingbourne · 13 years ago
  88. 1761ce5 Remove '-Xclang' and '-mllvm' entries from Clang man page. The later is only available in debug builds and the former is not supposed to be used by end-users. by Ted Kremenek · 13 years ago
  89. 8749401 Improve the documentation for some of the analyzer attributes I added by John McCall · 13 years ago
  90. 4561ecd Create __has_feature(cxx_noexcept) and mark it as working. by Sebastian Redl · 13 years ago
  91. 8402155 Rename tok::eom to tok::eod. by Peter Collingbourne · 13 years ago
  92. fd405ef Update the www to indicate that auto is now implemented. by Richard Smith · 13 years ago
  93. 9855967 we now support __label__ by Chris Lattner · 13 years ago
  94. cc2ac1e fix two broken links and some out of date writing, PR9174 by Chris Lattner · 13 years ago
  95. 0750800 Add a __has_feature check for default template arguments in function by Douglas Gregor · 13 years ago
  96. afdf137 Add __has_feature() for each of the type traits by Douglas Gregor · 13 years ago
  97. 28dadd6 Document how to add an attribute to clang. This should be reviewed by someone by Jeffrey Yasskin · 13 years ago
  98. b7ee2e5 Revert r124217 because it didn't catch the actual error case it was trying to by Jeffrey Yasskin · 13 years ago
  99. 56209ff Add __has_feature(cxx_reference_qualified_functions); update tests and by Douglas Gregor · 13 years ago
  100. c60e13a Add an attribute to forbid temporary instances of a type. This allows class by Jeffrey Yasskin · 13 years ago