| ... | @@ -5451,7 +5451,7 @@ static LLVMValueRef ir_render_vector_to_array(CodeGen *g, IrExecutable *executab | ... | @@ -5451,7 +5451,7 @@ static LLVMValueRef ir_render_vector_to_array(CodeGen *g, IrExecutable *executab |
| 5451 | LLVMValueRef vector = ir_llvm_value(g, instruction->vector); | 5451 | LLVMValueRef vector = ir_llvm_value(g, instruction->vector); |
| 5452 | LLVMValueRef casted_ptr = LLVMBuildBitCast(g->builder, result_loc, | 5452 | LLVMValueRef casted_ptr = LLVMBuildBitCast(g->builder, result_loc, |
| 5453 | LLVMPointerType(get_llvm_type(g, instruction->vector->value.type), 0), ""); | 5453 | LLVMPointerType(get_llvm_type(g, instruction->vector->value.type), 0), ""); |
| 5454 | gen_store_untyped(g, vector, casted_ptr, 0, false); | 5454 | gen_store_untyped(g, vector, casted_ptr, get_ptr_align(g, instruction->result_loc->value.type), false); |
| 5455 | return result_loc; | 5455 | return result_loc; |
| 5456 | } | 5456 | } |
| 5457 | | 5457 | |