We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 265e21b commit 156a017Copy full SHA for 156a017
src/libasr/codegen/asr_to_llvm.cpp
@@ -7986,7 +7986,7 @@ class ASRToLLVMVisitor : public ASR::BaseVisitor<ASRToLLVMVisitor>
7986
&& ASRUtils::is_character(*ASRUtils::expr_type(x.m_values[i - 1])))) {
7987
args.push_back(sep);
7988
} else {
7989
- sep_no_space = sep_no_space != nullptr ? sep_no_space : builder->CreateGlobalStringPtr("");
+ sep_no_space = sep_no_space != nullptr ? sep_no_space : builder->CreateGlobalStringPtr(" ");
7990
args.push_back(sep_no_space);
7991
}
7992
0 commit comments