Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lin-hitonami committed Jul 12, 2022
1 parent f563382 commit a0c01e3
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);
type->print(rso, false, true);
return type_name_str;
}

Expand Down

0 comments on commit a0c01e3

Please sign in to comment.