diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2008-07-03 08:32:59 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2008-07-03 08:32:59 +0000 |
commit | 6768980f103569a39a150f1dfdf27068f34fe6db (patch) | |
tree | bf53c9f625d9627385bd2c68b438135749c957bd | |
parent | 1e1cbbdbc87b10203f11a55a6b7c2adea41ec190 (diff) |
-Added bool feature.
-Set "Named Casts" feature to partial parser/sema support because reinterpret_cast is not properly implemented.
-Removed "Virtual functions" feature because it is already covered by "Class definitions".
-Removed "Templates" because we should either list *all* missing/supported features or just list the features with some support. Mentioning just a few missing features without listing all of them makes little sense.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53095 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | www/cxx_status.html | 22 |
1 files changed, 3 insertions, 19 deletions
diff --git a/www/cxx_status.html b/www/cxx_status.html index 36c1ac6585..123f4a0a50 100644 --- a/www/cxx_status.html +++ b/www/cxx_status.html @@ -37,14 +37,14 @@ actually produce LLVM code for the feature with the -emit-llvm option. <td width="345"><h3>Status</h3></td>
</tr>
<tr>
- <td>Keywords </td>
- <td>reinterpret_cast</td>
+ <td>Bool type </td>
+ <td>bool x; </td>
<td>Full support.</td>
</tr>
<tr>
<td>Named Casts </td>
<td>static_cast<int>(x)</td>
- <td>Parser and Sema support, no codegen.</td>
+ <td>Partial Parser and Sema support, no codegen.</td>
</tr>
<tr>
<td>References</td>
@@ -73,22 +73,6 @@ actually produce LLVM code for the feature with the -emit-llvm option. };</td>
<td>Partial Parser and Sema support, no Codegen support.</td>
</tr>
- <tr>
- <td>Virtual functions</td>
- <td>class C {<br/>
- public:<br/>
- virtual int doFoo() = 0;<br/>
- };</td>
- <td>Nonexistent.</td>
- </tr>
- <tr>
- <td>Templates</td>
- <td>class C {<br/>
- public:<br/>
- template <typename T> T as();<br/>
- };</td>
- <td>Nonexistent.</td>
- </tr>
</table>
</div>
</body>
|