From 05d48e56d3510601b5238313af7924dfcb25153a Mon Sep 17 00:00:00 2001 From: lin-hitonami Date: Tue, 12 Jul 2022 14:42:42 +0800 Subject: [PATCH] add comment --- taichi/codegen/llvm/llvm_codegen_utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taichi/codegen/llvm/llvm_codegen_utils.cpp b/taichi/codegen/llvm/llvm_codegen_utils.cpp index 9c926df0809c96..2b6e5ea4266b3a 100644 --- a/taichi/codegen/llvm/llvm_codegen_utils.cpp +++ b/taichi/codegen/llvm/llvm_codegen_utils.cpp @@ -6,7 +6,7 @@ namespace lang { std::string type_name(llvm::Type *type) { std::string type_name_str; llvm::raw_string_ostream rso(type_name_str); - type->print(rso, false, true); + type->print(rso, /*IsForDebug=*/false, /*NoDetails=*/true); return type_name_str; }