diff --git a/clang/www/OpenProjects.html b/clang/www/OpenProjects.html index 77f04160700fc..c2a8e8fa4f787 100755 --- a/clang/www/OpenProjects.html +++ b/clang/www/OpenProjects.html @@ -74,7 +74,7 @@

Open Clang Projects

C and C++ -defect reports and updating the documentation accordingly. +defect reports and updating the documentation accordingly.
  • Bug triage: Clang's issue trackercurrently has over 20,000 open issues, many of which are not @@ -90,6 +90,17 @@

    Open Clang Projects

    performance as well as to find ways to proactively alert us when we've introduced a change that has significant negative impact on build times.
  • +
  • Complete support for the experimental constant expression interpreter +: Clang's production constant expression interpreter computes a constant +expression result by walking over AST nodes, performing calculations as it +goes. This does not have good performance properties, and so we've begun work +on an +experimental constant expression interpreter that works by converting the +AST into bytecode that is interpreted. This effort has a long tail of work left +to complete because it requires implementing byte code for every kind of +expression and type that can be used in a constant expression for C++ and C. +
  • +
  • Improve clang-doc: Clang's library-based design allows it to be used by a variety of tools that reason about source code. clang-doc is one