summaryrefslogtreecommitdiffstats
path: root/clang/www
Commit message (Collapse)AuthorAgeFilesLines
...
* Update checker build.Ted Kremenek2010-07-081-1/+1
| | | | llvm-svn: 107893
* Tweak documentation to mention Debug+Asserts.Duncan Sands2010-07-081-2/+2
| | | | llvm-svn: 107863
* Update diagnostic on compatibility page to reflect realityDouglas Gregor2010-07-011-3/+2
| | | | llvm-svn: 107382
* Revert r107374, which broke bootstrap.Douglas Gregor2010-07-011-2/+3
| | | | llvm-svn: 107378
* When building the type of a destructor, make sure to keep theDouglas Gregor2010-07-011-3/+2
| | | | | | exception specification. Fixes PR7526. llvm-svn: 107374
* Update checker build.Ted Kremenek2010-07-011-1/+1
| | | | llvm-svn: 107364
* Improve diagnostic when we fail to pick an overload because it wouldDouglas Gregor2010-06-301-2/+3
| | | | | | require a base-to-derived pointer conversion. llvm-svn: 107349
* Wording tweak from Dan.Douglas Gregor2010-06-301-3/+3
| | | | llvm-svn: 107344
* Wording tweak from Dan.Douglas Gregor2010-06-301-1/+1
| | | | llvm-svn: 107343
* typo.Benjamin Kramer2010-06-301-1/+1
| | | | llvm-svn: 107342
* New language-compatibility page, including language-compatibility ↵Douglas Gregor2010-06-303-395/+613
| | | | | | information for the various language dialects Clang supports in a single, easy-to-find page llvm-svn: 107325
* Update checker build.Ted Kremenek2010-06-211-1/+1
| | | | llvm-svn: 106495
* Rework the unqualified-lookup-in-templates section of the compatibilityJohn McCall2010-06-161-70/+84
| | | | | | document. jyasskin, let me know if this meets your needs. llvm-svn: 106098
* Some more nods to HTML well-formedness.John McCall2010-06-161-13/+13
| | | | llvm-svn: 106094
* Fix template ordering compatibility docs. I missed another section that coveredJeffrey Yasskin2010-06-161-144/+90
| | | | | | the same thing. llvm-svn: 106076
* Describe a gcc compatibility problem that occurs when a template calls aJeffrey Yasskin2010-06-152-0/+127
| | | | | | | function defined between its declaration and an instantiation, and that function isn't findable through ADL. llvm-svn: 106068
* www: Swap external coverage & spec references links.Daniel Dunbar2010-06-131-2/+2
| | | | llvm-svn: 105925
* www: Add note on running clang tests from a CMake build, patch by Peter ↵Daniel Dunbar2010-06-101-0/+3
| | | | | | Collingbourne llvm-svn: 105791
* clang++ is now a different greek letter.Chris Lattner2010-06-021-2/+2
| | | | llvm-svn: 105313
* Add a compatibility note about incomplete types in templates.John McCall2010-06-021-0/+32
| | | | llvm-svn: 105309
* Update checker build.Ted Kremenek2010-05-271-1/+1
| | | | llvm-svn: 104817
* It turns out that people love using VLAs in templates, too. Weaken ourDouglas Gregor2010-05-231-5/+2
| | | | | | | | VLA restrictions so that one can use VLAs in templates (even accidentally), but not as part of a non-type template parameter (which would be very bad). llvm-svn: 104471
* Implement support for variable length arrays in C++. VLAs are limitedDouglas Gregor2010-05-221-6/+20
| | | | | | | | | | | | | in several important ways: - VLAs of non-POD types are not permitted. - VLAs cannot be used in conjunction with C++ templates. These restrictions are intended to keep VLAs out of the parts of the C++ type system where they cause the most trouble. Fixes PR5678 and <rdar://problem/8013618>. llvm-svn: 104443
* minor updatesChris Lattner2010-05-221-2/+4
| | | | llvm-svn: 104436
* down with export.Chris Lattner2010-05-211-1/+2
| | | | llvm-svn: 104383
* another unneeded line.Chris Lattner2010-05-211-2/+1
| | | | llvm-svn: 104379
* major update to the C++ status page. C++ support is Chris Lattner2010-05-211-2234/+47
| | | | | | now done and no more patches to it will be accepted. llvm-svn: 104378
* Add documention on ns_returns_not_retained and cf_returns_not_retained ↵Ted Kremenek2010-05-141-0/+62
| | | | | | attributes. llvm-svn: 103785
* BoostCon tutorial notes, temporaryDouglas Gregor2010-05-111-0/+56
| | | | llvm-svn: 103520
* Update latest checker build to a local link.Daniel Dunbar2010-05-081-1/+1
| | | | llvm-svn: 103332
* mention that cmake works on unix too. PR7061Chris Lattner2010-05-061-0/+5
| | | | llvm-svn: 103202
* Remove the blanket statement about Clang not supporting access control. It ↵Douglas Gregor2010-04-121-27/+2
| | | | | | does now llvm-svn: 101041
* Update checker build.Ted Kremenek2010-04-111-1/+1
| | | | llvm-svn: 100987
* Add a note to the C++ compatibility page about templates with noJohn McCall2010-04-091-0/+48
| | | | | | valid instantiations. llvm-svn: 100836
* rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner2010-04-073-3/+3
| | | | llvm-svn: 100708
* Update checker build.Ted Kremenek2010-04-071-1/+1
| | | | llvm-svn: 100603
* Update analyzer build.Ted Kremenek2010-04-011-1/+1
| | | | llvm-svn: 100153
* provide a simpler way to get to the headersGabor Greif2010-03-291-1/+1
| | | | llvm-svn: 99843
* Remove VS information for analyzer until we have more real support.Ted Kremenek2010-03-272-235/+0
| | | | llvm-svn: 99720
* s/Clangify2010.py/clangify2010.pyKovarththanan Rajaratnam2010-03-271-2/+2
| | | | llvm-svn: 99712
* Add initial draft of web page on 'clangifty2010.py' script for analyzing VS ↵Ted Kremenek2010-03-272-0/+235
| | | | | | projects. llvm-svn: 99691
* Add another compatibility note and tweak a few of the existing ones.John McCall2010-03-171-37/+61
| | | | llvm-svn: 98717
* Fix a typo in a tag.Chandler Carruth2010-03-171-1/+1
| | | | llvm-svn: 98713
* Document common clang compatibility issues.Rafael Espindola2010-03-171-0/+220
| | | | | | Patch by Zhanyong Wan. llvm-svn: 98708
* Fix grammarTed Kremenek2010-03-121-1/+1
| | | | llvm-svn: 98352
* Update checker build.Ted Kremenek2010-03-111-1/+1
| | | | llvm-svn: 98259
* Fix typo.Ted Kremenek2010-02-281-1/+1
| | | | llvm-svn: 97365
* Update checker build.Ted Kremenek2010-02-261-1/+1
| | | | llvm-svn: 97186
* Fix link.Ted Kremenek2010-02-191-1/+1
| | | | llvm-svn: 96684
* Update front page to mention Xcode integration.Ted Kremenek2010-02-191-11/+36
| | | | llvm-svn: 96682
OpenPOWER on IntegriCloud