From 3dddae8c5c126e2af48813ef85925a48112d6570 Mon Sep 17 00:00:00 2001 From: AD1024 Date: Wed, 10 Aug 2022 17:27:06 -0400 Subject: [PATCH] add one more pick --- taichi/codegen/llvm/codegen_llvm.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/taichi/codegen/llvm/codegen_llvm.cpp b/taichi/codegen/llvm/codegen_llvm.cpp index f4e3355bbd03c..1207e16d17a62 100644 --- a/taichi/codegen/llvm/codegen_llvm.cpp +++ b/taichi/codegen/llvm/codegen_llvm.cpp @@ -1523,7 +1523,6 @@ void TaskCodeGenLLVM::create_global_load(GlobalLoadStmt *stmt, if (should_cache_as_read_only) { llvm_val[stmt] = create_intrinsic_load(ptr, llvm_type(stmt->ret_type)); } else { - ptr->dump(); llvm_val[stmt] = builder->CreateLoad(tlctx->get_data_type(stmt->ret_type), ptr); }