1. ea30e2f Add the Microsoft __is_interface_class type trait. Patch by Andy Gibbs! by John McCall · 12 years ago
  2. 9d8c9d3 Added an example of an empty case label to avoid confusion. by Alexander Kornienko · 12 years ago
  3. dfccbd9 Documentation: correct a typo introduced in r162971. by Dmitri Gribenko · 12 years ago
  4. a8ba40e Documentation: add missing word "accepts". by Dmitri Gribenko · 12 years ago
  5. 0d5a069 Add support for "type safety" attributes that allow checking that 'void *' by Dmitri Gribenko · 12 years ago
  6. a841c19 Add __builtin_readcyclecounter() to produce the @llvm.readcyclecounter() intrinsic. by Hal Finkel · 12 years ago
  7. 790880b document _has_feature(objc_default_synthesize_properties). // rdar://11676972 by Fariborz Jahanian · 12 years ago
  8. ccc4edf Close HTML tag properly. by Dmitri Gribenko · 12 years ago
  9. fff4a44 Fix typo and avoid layout issue with almost-but-not-quite-fixed-width fonts. by Richard Smith · 12 years ago
  10. 207653c Minor copy-edits to clang::fallthrough attribute documentation. by Richard Smith · 12 years ago
  11. e0d3b4c Add -Wimplicit-fallthrough warning flag, which warns on fallthrough between by Richard Smith · 12 years ago
  12. c495e60 Formatting fix. by Richard Smith · 12 years ago
  13. eb382ec Implements boxed expressions for Objective-C. <rdar://problem/10194391> by Patrick Beard · 12 years ago
  14. fafbf06 Provide, and document, a set of __c11_atomic_* intrinsics to implement C11's by Richard Smith · 12 years ago
  15. 316551f Add a query macro for C++11 N3276, decltype does not require complete by Douglas Gregor · 12 years ago
  16. 85ff969 [Lex] Add support for 'user specified system frameworks' (see test case). by Daniel Dunbar · 12 years ago
  17. 7b156dd Add feature check "cxx_local_type_template_args" describing support by Douglas Gregor · 12 years ago
  18. 1526f54 Removed repeated word (of of). by Patrick Beard · 12 years ago
  19. 2498885 Fixed typo. by Patrick Beard · 12 years ago
  20. 62f1234 Added summary section for Object Literals and Subscripting, which contains the external link. by Patrick Beard · 12 years ago
  21. 7f919c8 Link to Objective-C literals documentation. by Patrick Beard · 12 years ago
  22. b455686 LanguageExtensions: Manually word wrap a line to reduce horizontal scrolling. by Benjamin Kramer · 12 years ago
  23. 594f841 Document the weak-linking behavior of the availability attribute by Douglas Gregor · 12 years ago
  24. 93a7067 Document the availability attribute by Douglas Gregor · 12 years ago
  25. bccda48 Clarify even further that the lambda-to-block-pointer conversion is only available in Objective-C++ by Douglas Gregor · 12 years ago
  26. 8a4e182 Document the conversion from a lambda closure type to a block pointer by Douglas Gregor · 12 years ago
  27. 9c1dda7 User-defined literals are done. by Richard Smith · 12 years ago
  28. 8013458 Correct the documentation to give a legal example of a raw string literal. by Richard Smith · 12 years ago
  29. ec92bc7 Add a pile of tests for unrestricted unions, and advertise support for them. by Richard Smith · 12 years ago
  30. 8a5e7fd Implement double underscore names support in __has_attribute by Jean-Daniel Dupas · 12 years ago
  31. 1d9f4c1 Correct an example of a feature name to actually use a feature name rather by Richard Smith · 12 years ago
  32. 8818955 Update release notes and language extensions pages to note that support for by Richard Smith · 12 years ago
  33. 5297d71 Accept __has_feature(__feature__) as a synonym for __has_feature(feature) (and by Richard Smith · 12 years ago
  34. 4ca8ac2 Implement a new type trait __is_trivially_constructible(T, Args...) by Douglas Gregor · 12 years ago
  35. 46e021e Clang supports lambdas. by Douglas Gregor · 12 years ago
  36. b5216aa Advertize support for constexpr. by Richard Smith · 12 years ago
  37. 71efba0 The following patch adds __attribute__((no_address_safety_analysis)) which will allow to disable by Kostya Serebryany · 12 years ago
  38. 3419d7c Tweak markup. by Benjamin Kramer · 12 years ago
  39. da90c77 added descriptions of vector extensions, info about vector literals and vector operations. by Anton Yartsev · 12 years ago
  40. 665a8dc Fix ALL the markup. by Benjamin Kramer · 12 years ago
  41. ffbe9b9 Mass rename C1x references to C11. The name hasn't proliferated like "C++0x" so this patch is surprisingly small. by Benjamin Kramer · 13 years ago
  42. d4b66b9 clarify that clang version number macros are marketing version #'s, not something useful. by Chris Lattner · 13 years ago
  43. 5e9392b Implement support for the __is_final type trait, to determine whether by Douglas Gregor · 13 years ago
  44. ce98c9b First version of AddressSanitizer docs; documentation for __has_feature(address_sanitizer) by Kostya Serebryany · 13 years ago
  45. 8a0ace6 Fix grammaro by Douglas Gregor · 13 years ago
  46. f695a69 Add __has_feature(cxx_defaulted_functions) for querying "defaulted by Douglas Gregor · 13 years ago
  47. 5090e9f Update documentation to use "C++11" instead of "C++0x" by David Blaikie · 13 years ago
  48. fd5f686 Add c_alignas and cxx_alignas features by Peter Collingbourne · 13 years ago
  49. 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
  50. 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
  51. 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
  52. aebb653 Document __has_feature(objc_instancetype). by Douglas Gregor · 13 years ago
  53. 5471bc8 Allow C++0x enumerations with a fixed underlying type in by Douglas Gregor · 13 years ago
  54. e97179c Implement the Objective-C 'instancetype' type, which is an alias of by Douglas Gregor · 13 years ago
  55. ece3894 Add and document __has_feature values for the remaining C++0x by Douglas Gregor · 13 years ago
  56. b51e031 Thread Safety: Added basic argument parsing for all new attributes. by Caitlin Sadowski · 13 years ago
  57. e1f6dea Add a __has_feature macro for generalized initializers, turned off by Sean Hunt · 13 years ago
  58. db33e14 Added basic parsing for all remaining attributes, thread safety by Caitlin Sadowski · 13 years ago
  59. 73cbbc8 Thread safety: Fix typo in documentation by Caitlin Sadowski · 13 years ago
  60. fdde9e7 Added parsing for guarded_var, pt_guarded_var, lockable, by Caitlin Sadowski · 13 years ago
  61. 1fba828 Thanks to Chandler for reminding me to update the documentation for the by Sean Hunt · 13 years ago
  62. d962499 Add documentation about __has_feature(cxx_delegationg_constructors) by Sean Hunt · 13 years ago
  63. 64f857b Fix a minor copy-paste-o that broke the stylesheets by Sean Hunt · 13 years ago
  64. 7e98b47 Fix a bunch of HTML compliance problems with LanguageExtensions.html by Sean Hunt · 13 years ago
  65. 647ba1b Revert "-fexceptions does not, in fact, enable C++ exceptions" by Sean Hunt · 13 years ago
  66. 4b4ba8b -fexceptions does not, in fact, enable C++ exceptions by Sean Hunt · 13 years ago
  67. f85e193 Automatic Reference Counting. by John McCall · 13 years ago
  68. 926df6c Implement Objective-C Related Result Type semantics. by Douglas Gregor · 13 years ago
  69. 84ee2ee Audit and finish the implementation of C++0x nullptr, fixing two by Douglas Gregor · 13 years ago
  70. c1b5fa4 Introduce __has_extension macro 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. a391a46 Add __has_feature(cxx_range_for) check for C++11 range-based for loop. by Richard Smith · 13 years ago
  74. f111d93 C1X: implement generic selections by Peter Collingbourne · 13 years ago
  75. 23aa9c8 add a __sync_swap builtin to fill out the rest of the __sync builtins. by Chris Lattner · 13 years ago
  76. c8b9f79 we can now claim to fully support the override control feature in C++0x. by Anders Carlsson · 13 years ago
  77. c70e193 and now there are 3! by Chris Lattner · 13 years ago
  78. 8749401 Improve the documentation for some of the analyzer attributes I added by John McCall · 13 years ago
  79. 4561ecd Create __has_feature(cxx_noexcept) and mark it as working. by Sebastian Redl · 13 years ago
  80. fd405ef Update the www to indicate that auto is now implemented. by Richard Smith · 13 years ago
  81. 0750800 Add a __has_feature check for default template arguments in function by Douglas Gregor · 13 years ago
  82. afdf137 Add __has_feature() for each of the type traits by Douglas Gregor · 13 years ago
  83. b7ee2e5 Revert r124217 because it didn't catch the actual error case it was trying to by Jeffrey Yasskin · 13 years ago
  84. 56209ff Add __has_feature(cxx_reference_qualified_functions); update tests and by Douglas Gregor · 13 years ago
  85. c60e13a Add an attribute to forbid temporary instances of a type. This allows class by Jeffrey Yasskin · 13 years ago
  86. 630b7ae Document the ns_returns_retained, ns_consumed, etc. attributes. by John McCall · 13 years ago
  87. 2594bf9 Eliminate the last reference to concepts, from Jean-Daniel Dupas by Douglas Gregor · 13 years ago
  88. 961003d Fix the __has_attribute example; we don't have an override attribute anymore. by Anders Carlsson · 13 years ago
  89. 40d5eb4 remove some crazy leftover thing. by Chris Lattner · 13 years ago
  90. 83d7781 Eradicate any mention of C++0x concepts. by Douglas Gregor · 13 years ago
  91. 71b48d6 fix typo by Chris Lattner · 14 years ago
  92. 4836d6a make the example a bit better, encouraging people to use "suggestions of what to use" in the message :) by Chris Lattner · 14 years ago
  93. 4820908 Document Clang's support for attributes on individual enumerators and by John McCall · 14 years ago
  94. cae5095 Add a __has_attribute macro that works much like __has_feature and __has_builtin. by Anders Carlsson · 14 years ago
  95. 1274ccd Implement C++0x scoped enumerations, from Daniel Wallin! (and tweaked a by Douglas Gregor · 14 years ago
  96. c784dc1 Patch for adding message to unavailable attribute. by Fariborz Jahanian · 14 years ago
  97. dab60ad Implement the C++0x "trailing return type" feature, e.g., by Douglas Gregor · 14 years ago
  98. f6c0977 Implement __has_feature(cxx_inline_namespaces) by Sebastian Redl · 14 years ago
  99. 3e5d00c Reverted r103214. by mike-m · 14 years ago[Renamed from docs/main/LanguageExtensions.html]
  100. 25a7678 2nd part of: Overhauled llvm/clang docs builds. by mike-m · 14 years ago[Renamed from docs/LanguageExtensions.html]