| ... | ... | @@ -6308,8 +6308,8 @@ fn vectorTypeAssumeCapacity( |
| 6308 | 6308 | .data = self.addTypeExtraAssumeCapacity(data), |
| 6309 | 6309 | }); |
| 6310 | 6310 | if (self.useLibLlvm()) self.llvm.types.appendAssumeCapacity(switch (kind) { |
| 6311 | | .normal => &llvm.Type.vectorType, |
| 6312 | | .scalable => &llvm.Type.scalableVectorType, |
| 6311 | .normal => llvm.Type.vectorType, |
| 6312 | .scalable => llvm.Type.scalableVectorType, |
| 6313 | 6313 | }(child.toLlvm(self), @intCast(len))); |
| 6314 | 6314 | } |
| 6315 | 6315 | return @enumFromInt(gop.index); |
| ... | ... | @@ -7443,8 +7443,8 @@ fn gepConstAssumeCapacity( |
| 7443 | 7443 | for (llvm_indices, indices) |*llvm_index, index| llvm_index.* = index.toLlvm(self); |
| 7444 | 7444 | |
| 7445 | 7445 | self.llvm.constants.appendAssumeCapacity(switch (kind) { |
| 7446 | | .normal => &llvm.Type.constGEP, |
| 7447 | | .inbounds => &llvm.Type.constInBoundsGEP, |
| 7446 | .normal => llvm.Type.constGEP, |
| 7447 | .inbounds => llvm.Type.constInBoundsGEP, |
| 7448 | 7448 | }(ty.toLlvm(self), base.toLlvm(self), llvm_indices.ptr, @intCast(llvm_indices.len))); |
| 7449 | 7449 | } |
| 7450 | 7450 | } |