summaryrefslogtreecommitdiffstats
path: root/clang/www
Commit message (Collapse)AuthorAgeFilesLines
...
* Update checker build.Ted Kremenek2010-09-101-1/+1
| | | | llvm-svn: 113569
* Put the info on testing from the command line into its own sectionDawn Perchik2010-09-031-0/+5
| | | | | | titled "Testing on the Command Line". llvm-svn: 112972
* Fix a typo.Daniel Dunbar2010-09-031-1/+1
| | | | llvm-svn: 112926
* Add a compatibility note about why Clang rejects jumps past __block variables.Daniel Dunbar2010-09-021-0/+50
| | | | llvm-svn: 112865
* the target of the link uses the singular form, so do we tooGabor Greif2010-08-281-1/+1
| | | | llvm-svn: 112367
* typoGabor Greif2010-08-281-1/+1
| | | | llvm-svn: 112366
* mark boost's tracking bug as fixedGabor Greif2010-08-261-1/+1
| | | | llvm-svn: 112183
* Update documentation regarding use of 'class' inFariborz Jahanian2010-08-111-0/+25
| | | | | | property-dot syntax. llvm-svn: 110841
* Update checker build.Ted Kremenek2010-07-301-1/+1
| | | | llvm-svn: 109907
* Update checker build.Ted Kremenek2010-07-301-1/+1
| | | | llvm-svn: 109862
* Test commitTanya Lattner2010-07-281-1/+1
| | | | llvm-svn: 109604
* Test commit.Tanya Lattner2010-07-281-1/+1
| | | | llvm-svn: 109601
* Update checker build.Ted Kremenek2010-07-281-1/+1
| | | | llvm-svn: 109600
* path renamed.Chris Lattner2010-07-261-1/+1
| | | | llvm-svn: 109464
* Add missing whitespace.Ted Kremenek2010-07-081-1/+1
| | | | llvm-svn: 107897
* 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
OpenPOWER on IntegriCloud