| ... | @@ -14118,8 +14118,8 @@ fn checkVectorizableBinaryOperands( | ... | @@ -14118,8 +14118,8 @@ fn checkVectorizableBinaryOperands( |
| 14118 | lhs_src: LazySrcLoc, | 14118 | lhs_src: LazySrcLoc, |
| 14119 | rhs_src: LazySrcLoc, | 14119 | rhs_src: LazySrcLoc, |
| 14120 | ) CompileError!void { | 14120 | ) CompileError!void { |
| 14121 | const lhs_zig_ty_tag = lhs_ty.zigTypeTag(); | 14121 | const lhs_zig_ty_tag = try lhs_ty.zigTypeTagOrPoison(); |
| 14122 | const rhs_zig_ty_tag = rhs_ty.zigTypeTag(); | 14122 | const rhs_zig_ty_tag = try rhs_ty.zigTypeTagOrPoison(); |
| 14123 | if (lhs_zig_ty_tag == .Vector and rhs_zig_ty_tag == .Vector) { | 14123 | if (lhs_zig_ty_tag == .Vector and rhs_zig_ty_tag == .Vector) { |
| 14124 | const lhs_len = lhs_ty.vectorLen(); | 14124 | const lhs_len = lhs_ty.vectorLen(); |
| 14125 | const rhs_len = rhs_ty.vectorLen(); | 14125 | const rhs_len = rhs_ty.vectorLen(); |