Skip to content

Commit

Permalink
add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
lin-hitonami committed Jul 12, 2022
1 parent a0c01e3 commit 05d48e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taichi/codegen/llvm/llvm_codegen_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 05d48e5

Please sign in to comment.