[cfe-commits] r53013 - /cfe/trunk/www/cxx_status.html

Argiris Kirtzidis akyrtzi at gmail.com
Wed Jul 2 04:39:34 PDT 2008


Author: akirtzidis
Date: Wed Jul  2 06:38:59 2008
New Revision: 53013

URL: http://llvm.org/viewvc/llvm-project?rev=53013&view=rev
Log:
Add a C++ status report page.

Added:
    cfe/trunk/www/cxx_status.html

Added: cfe/trunk/www/cxx_status.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/www/cxx_status.html?rev=53013&view=auto

==============================================================================
--- cfe/trunk/www/cxx_status.html (added)
+++ cfe/trunk/www/cxx_status.html Wed Jul  2 06:38:59 2008
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
+          "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+  <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+  <title>Clang - Features and Goals</title>
+  <link type="text/css" rel="stylesheet" href="menu.css" />
+  <link type="text/css" rel="stylesheet" href="content.css" />
+  <style type="text/css">
+</style>
+</head>
+<body>
+
+<!--#include virtual="menu.html.incl"-->
+
+<div id="content">
+
+<!--*************************************************************************-->
+<h1>C++ Support in Clang</h1>
+<!--*************************************************************************-->
+
+<p>
+This page tracks the status of C++ support in Clang.</p>
+<table width="689" border="1">
+  <tr>
+    <td width="150"><h3>Feature</h3></td>
+    <td width="172"><h3>Example</h3></td>
+    <td width="345"><h3>Status</h3></td>
+  </tr>
+  <tr>
+    <td>C++ Keywords </td>
+    <td>reinterpret_cast</td>
+    <td>Full support.</td>
+  </tr>
+  <tr>
+    <td>C++ References</td>
+    <td>int &x = ...;</td>
+    <td>Parser and Sema support in, partial Codegen support. </td>
+  </tr>
+  <tr>
+    <td>C++ Default arguments </td>
+    <td>void f(int x=0); </td>
+    <td>Full support. </td>
+  </tr>
+  <tr>
+    <td>C++ Namespaces</td>
+    <td>namespace A {<br/>
+	     int x;<br/>
+	  }</td>
+    <td>Parser and Sema support in, no Codegen support. </td>
+  </tr>
+  <tr>
+    <td>C++ Class definitions</td>
+    <td>class C {<br/>
+      public:<br/>
+         int getX() { return x; }<br/>
+      private:<br/>
+	     int x;<br/>
+	  };</td>
+    <td>Partial Parser and Sema support, no Codegen support. </td>
+  </tr>
+</table>
+</div>
+</body>
+</html>





More information about the cfe-commits mailing list