We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6caa8a commit b2897b8Copy full SHA for b2897b8
c2rust-ast-exporter/src/AstExporter.cpp
@@ -400,6 +400,9 @@ class TypeEncoder final : public TypeVisitor<TypeEncoder> {
400
case BuiltinType::UInt: return TagUInt;
401
case BuiltinType::ULong: return TagULong;
402
case BuiltinType::ULongLong: return TagULongLong;
403
+ // Constructed as consequence of the conversion of built-in vector
404
+ // types to normal vector types
405
+ case BuiltinType::Float16: return TagHalf;
406
case BuiltinType::Half: return TagHalf;
407
#if CLANG_VERSION_MAJOR >= 11
408
case BuiltinType::BFloat16: return TagBFloat16;
0 commit comments