From 8c4cff0d08623c270510de9a80937853fab4a4b8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 May 2024 13:04:21 -0600 Subject: [PATCH] Auto-format code changes (#517) Auto-format code using Clang-Format Co-authored-by: GitHub Actions --- include/micm/jit/jit_function.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/micm/jit/jit_function.hpp b/include/micm/jit/jit_function.hpp index 74b2fdd35..c01c1b158 100644 --- a/include/micm/jit/jit_function.hpp +++ b/include/micm/jit/jit_function.hpp @@ -248,7 +248,8 @@ namespace micm return builder_->CreateLoad(GetType(type), elem, array_ptr.name_ + " load elem"); } - void JitFunction::SetArrayElement(JitArgument array_ptr, llvm::ArrayRef index, JitType type, llvm::Value* value) + void + JitFunction::SetArrayElement(JitArgument array_ptr, llvm::ArrayRef index, JitType type, llvm::Value* value) { llvm::Value* elem = builder_->CreateGEP(GetType(type), array_ptr.ptr_, index, array_ptr.name_ + " set elem"); builder_->CreateStore(value, elem);