forked from OSchip/llvm-project
-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:
parent
f5bfb06b85
commit
5c48a70dad
|
|
@ -37,14 +37,14 @@ actually produce LLVM code for the feature with the -emit-llvm option.
|
||||||
<td width="345"><h3>Status</h3></td>
|
<td width="345"><h3>Status</h3></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Keywords </td>
|
<td>Bool type </td>
|
||||||
<td>reinterpret_cast</td>
|
<td>bool x; </td>
|
||||||
<td>Full support.</td>
|
<td>Full support.</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Named Casts </td>
|
<td>Named Casts </td>
|
||||||
<td>static_cast<int>(x)</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>
|
||||||
<tr>
|
<tr>
|
||||||
<td>References</td>
|
<td>References</td>
|
||||||
|
|
@ -73,22 +73,6 @@ actually produce LLVM code for the feature with the -emit-llvm option.
|
||||||
};</td>
|
};</td>
|
||||||
<td>Partial Parser and Sema support, no Codegen support.</td>
|
<td>Partial Parser and Sema support, no Codegen support.</td>
|
||||||
</tr>
|
</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>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue