diff --git a/clang/www/cxx_status.html b/clang/www/cxx_status.html index 88de2f97b08a..36c1ac65857b 100644 --- a/clang/www/cxx_status.html +++ b/clang/www/cxx_status.html @@ -22,7 +22,15 @@

This page tracks the status of C++ support in Clang.
Currently most of the C++ features are missing; here you can find features that are at least partially supported in Clang.

- + +

+In this table, parser support means that the parser knows the grammar for +the feature. "Sema" support means that we do type checking, report errors +about misuses of the feature and build an AST. CodeGen support means that we +actually produce LLVM code for the feature with the -emit-llvm option. +

+ +
@@ -33,6 +41,11 @@ Currently most of the C++ features are missing; here you can find features that + + + + +

Feature

Example

reinterpret_cast Full support.
Named Casts static_cast<int>(x)Parser and Sema support, no codegen.
References int &x = ...;