summaryrefslogtreecommitdiffstats
path: root/clang/www
Commit message (Collapse)AuthorAgeFilesLines
...
* cxx_status: we did support some of C++14 in Clang 3.3.Richard Smith2014-08-311-1/+1
| | | | llvm-svn: 216837
* cxx_status: the name C++14 isn't provisional any more.Richard Smith2014-08-311-8/+9
| | | | llvm-svn: 216836
* Tests for DR525-550.Richard Smith2014-08-311-20/+20
| | | | llvm-svn: 216834
* [cxx_status] Minor wording tweaks.Richard Smith2014-06-221-3/+3
| | | | llvm-svn: 211471
* [cxx_status] Be a bit more precise.Richard Smith2014-06-221-1/+1
| | | | llvm-svn: 211470
* Fix dead link.Richard Smith2014-06-221-2/+3
| | | | llvm-svn: 211469
* C++ status page: restore the convention of saying "SVN" until we reach a ↵Richard Smith2014-06-201-4/+4
| | | | | | release. llvm-svn: 211398
* Be less bold.Richard Smith2014-06-201-1/+1
| | | | llvm-svn: 211397
* [C++1z] Add C++1z to the C++ status page.Richard Smith2014-06-201-7/+39
| | | | llvm-svn: 211396
* Tweak documentation.Nico Weber2014-06-122-6/+9
| | | | | | | | | | 1. Having "get started", "get involved", and "hacking" makes it hard to find how to send patches, so add a link from "get involved" to "hacking". 2. Remove an almost 5 year old note on the test running meachanism changing soon. 3. Let "hacking" link to the LLVM developer policy. llvm-svn: 210826
* Update DR page for latest revision of CWG issues list.Richard Smith2014-06-031-28/+424
| | | | llvm-svn: 210130
* Implement DR990 and DR1070. Aggregate initialization initializes uninitializedRichard Smith2014-06-031-3/+3
| | | | | | | | | elements from {}, rather than value-initializing them. This permits calling an initializer-list constructor or constructing a std::initializer_list object. (It would also permit initializing a const reference or rvalue reference if that weren't explicitly prohibited by other rules.) llvm-svn: 210091
* Sema: Implement DR244David Majnemer2014-05-211-1/+1
| | | | | | | | | | | | | | | | Summary: Naming the destructor using a typedef-name for the class-name is well-formed. This fixes PR19620. Reviewers: rsmith, doug.gregor Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D3583 llvm-svn: 209319
* [analyzer] Alpha and implicit checker lists, expand/collapse feature.Anton Yartsev2014-05-1911-90/+1271
| | | | | | | | The list of alpha and the list of implicit checkers added. An ability to expand/collapse long texts added. Markup fixed. http://reviews.llvm.org/D3457 llvm-svn: 209131
* Correct incoherent function versus function template partial ordering for ↵Richard Smith2014-05-171-1/+1
| | | | | | conversion operators (the comparison could claim that two conversion operators are both better than each other). Actually implement DR495, rather than passing its test by chance because the declarations happened to be in the "lucky" order. llvm-svn: 209054
* Fix link target.Richard Smith2014-05-091-1/+1
| | | | llvm-svn: 208376
* www: add a missing HTML open tagAlp Toker2014-05-061-0/+1
| | | | | | This went AWOL in r207995. llvm-svn: 208018
* www: remove proprietary dbtree.js script from r96013Alp Toker2014-05-058-22/+1
| | | | | | | | | | | | This minified source code and artwork is copied from a commercial product and carries no license information: dbtree.js (7 kb), 25.03.2014 14:51:32 Purchase and download DBTree now for only $29.75 $9.75 It was used by a small TOC which looks fine now as a plain unordered list. llvm-svn: 207995
* Revert "Sema: Implement DR244"David Majnemer2014-05-031-1/+1
| | | | | | | | This was accidentally committed. This reverts commit r207892. llvm-svn: 207893
* Sema: Implement DR244David Majnemer2014-05-031-1/+1
| | | | | | | | | Naming the destructor using a typedef-name for the class-name is well-formed. This fixes PR19620. llvm-svn: 207892
* Sema: Implement DR477David Majnemer2014-04-301-1/+1
| | | | | | | | | | | | Summary: Friend declarations shouldn't mention explicit or virtual. Reviewers: rsmith Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D3562 llvm-svn: 207682
* [analyzer] Clean up the lists of current and potential checkers.Jordan Rose2014-04-293-1073/+2544
| | | | | | Patch by Anton Yartsev, modified by me. llvm-svn: 207478
* remove less relevant information + about packaging/Mac OS X + link to cfe-devSylvestre Ledru2014-04-272-4/+3
| | | | llvm-svn: 207362
* Remove no longer relevant information in the gcc/llvm comparison page + ↵Sylvestre Ledru2014-04-271-9/+2
| | | | | | minor updates llvm-svn: 207361
* Remove deprecated information about performances:Sylvestre Ledru2014-04-271-57/+4
| | | | | | | | | | * It is better if we leave third parties to do "independent" benchmark. * We compare Clang (version unspecified) with gcc 4.0 or 4.2. * The graphs have not been updated for a while. * Clang is well known now. I don't think we still need to explain why Clang is great. llvm-svn: 207358
* Tests for DR501-525.Richard Smith2014-04-131-21/+21
| | | | llvm-svn: 206123
* [analyzer] Fix mistake in example for potential checker "posix.Errno".Jordan Rose2014-04-071-1/+1
| | | | | | Found by Richard Osbourne! llvm-svn: 205721
* [analyzer] Add an ErrnoChecker (PR18701) to the Potential Checkers list.Jordan Rose2014-04-051-0/+28
| | | | llvm-svn: 205667
* [analyzer] Update Open Projects page with BitwiseConstraintManager.Jordan Rose2014-04-051-12/+11
| | | | | | | Also, add the names of people most recently working on particular projects, and remove "relate bugs and checkers" (thanks, Alex!). llvm-svn: 205666
* Add failing testcase for DR305. Looks like we didn't implement the resolutionRichard Smith2014-04-011-2/+2
| | | | | | here in the simple-template-id case. llvm-svn: 205273
* Sema: Implement DR317David Majnemer2014-03-301-1/+1
| | | | | | | | | | | | | | | Summary: Declaring a function as inline after it has been defined is in violation of [dcl.fct.spec]p4. The program would get a strong definition instead of getting a function with linkonce_odr linkage. Reviewers: rsmith CC: cfe-commits Differential Revision: http://llvm-reviews.chandlerc.com/D3220 llvm-svn: 205129
* Tests for dr475-dr500.Richard Smith2014-03-301-24/+24
| | | | llvm-svn: 205127
* [analyzer] Remove the implemented Identical* checkers from the "potential" list.Jordan Rose2014-03-261-63/+0
| | | | | | Edit by Daniel Fahlgren. llvm-svn: 204842
* Tests for DR450-475.Richard Smith2014-03-191-19/+19
| | | | llvm-svn: 204217
* Tests for DR400-450.Richard Smith2014-03-171-41/+41
| | | | llvm-svn: 204033
* Add two missing entries to the C++11 support page. Bump one relevant diagnosticRichard Smith2014-03-141-2/+10
| | | | | | | | (for an integer too large for any signed type) from Warning to ExtWarn -- it's ill-formed in C++11 and C99 onwards, and UB during translation in C89 and C++98. Add diagnostic groups for two relevant diagnostics. llvm-svn: 203974
* Try to remove confusion about C++11 feature support:Richard Smith2014-03-141-14/+13
| | | | | | | | * Explicitly say that we conform to the two N/A bullets that required no compiler changes. * Remove a library feature from our features list. llvm-svn: 203964
* Tests for DR389-399.Richard Smith2014-03-131-9/+9
| | | | llvm-svn: 203771
* DR1346: a parenthesized braced-init-list cannot be used as the initializer whenRichard Smith2014-03-121-1/+1
| | | | | | performing auto type deduction. llvm-svn: 203683
* Tests for DR381-388.Richard Smith2014-03-111-7/+7
| | | | llvm-svn: 203549
* "Mac OS/X" -> "Mac OS X" spelling fixes for clang.Nico Weber2014-03-071-1/+1
| | | | | | Patch from Sean McBride <sean@rogue-research.com>! llvm-svn: 203259
* DR status page: add link targets for individual DRs, and link duplicates.Richard Smith2014-03-052-1878/+1877
| | | | llvm-svn: 203022
* Tests for DR370-380.Richard Smith2014-03-051-8/+8
| | | | | | | Also promote a couple of Warnings on ill-formed code found by this testing to ExtWarns. llvm-svn: 203021
* Add tests for newly-resolved core issues <= 370.Richard Smith2014-03-041-7/+7
| | | | llvm-svn: 202889
* Update DR status page to match post-Issaquah core issues list.Richard Smith2014-03-041-890/+1064
| | | | llvm-svn: 202886
* Add links to TSen from post-Issaquah mailing.Richard Smith2014-03-041-2/+2
| | | | llvm-svn: 202882
* [analyzer] post analyzer build checker-276Ted Kremenek2014-02-192-1/+13
| | | | llvm-svn: 201648
* Remove gunk from cxx_dr_status.htmlDavid Majnemer2014-02-191-8/+2
| | | | | | | Accidentally piped the stdout from make_cxx_dr_status into cxx_dr_status.html llvm-svn: 201634
* Regenerate DR status page.David Majnemer2014-02-191-3/+9
| | | | llvm-svn: 201632
* Remove transactional memory from c++ status page; there's no working paper ↵Richard Smith2014-02-151-5/+0
| | | | | | for it yet. llvm-svn: 201452
OpenPOWER on IntegriCloud