| ... | @@ -1134,6 +1134,7 @@ static AstNode *trans_type(Context *c, const Type *ty, const SourceLocation &sou | ... | @@ -1134,6 +1134,7 @@ static AstNode *trans_type(Context *c, const Type *ty, const SourceLocation &sou |
| 1134 | case Type::ObjCTypeParam: | 1134 | case Type::ObjCTypeParam: |
| 1135 | case Type::DeducedTemplateSpecialization: | 1135 | case Type::DeducedTemplateSpecialization: |
| 1136 | case Type::DependentAddressSpace: | 1136 | case Type::DependentAddressSpace: |
| | 1137 | case Type::DependentVector: |
| 1137 | emit_warning(c, source_loc, "unsupported type: '%s'", ty->getTypeClassName()); | 1138 | emit_warning(c, source_loc, "unsupported type: '%s'", ty->getTypeClassName()); |
| 1138 | return nullptr; | 1139 | return nullptr; |
| 1139 | } | 1140 | } |
| ... | @@ -2573,6 +2574,7 @@ static AstNode *trans_bool_expr(Context *c, ResultUsed result_used, TransScope * | ... | @@ -2573,6 +2574,7 @@ static AstNode *trans_bool_expr(Context *c, ResultUsed result_used, TransScope * |
| 2573 | case Type::ObjCTypeParam: | 2574 | case Type::ObjCTypeParam: |
| 2574 | case Type::DeducedTemplateSpecialization: | 2575 | case Type::DeducedTemplateSpecialization: |
| 2575 | case Type::DependentAddressSpace: | 2576 | case Type::DependentAddressSpace: |
| | 2577 | case Type::DependentVector: |
| 2576 | return res; | 2578 | return res; |
| 2577 | } | 2579 | } |
| 2578 | zig_unreachable(); | 2580 | zig_unreachable(); |