-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.

llvm-svn: 53095
This commit is contained in:
Argyrios Kyrtzidis 2008-07-03 08:32:59 +00:00
parent f5bfb06b85
commit 5c48a70dad
1 changed files with 3 additions and 19 deletions

View File

@ -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&lt;int&gt;(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/>
&nbsp;&nbsp;&nbsp;virtual int doFoo() = 0;<br/>
};</td>
<td>Nonexistent.</td>
</tr>
<tr>
<td>Templates</td>
<td>class C {<br/>
public:<br/>
&nbsp;&nbsp;&nbsp;template &lt;typename T&gt; T as();<br/>
};</td>
<td>Nonexistent.</td>
</tr>
</table>
</div>
</body>