Skip to content

Commit 99c3295

Browse files
debug CI
1 parent 5903e8d commit 99c3295

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/libasr/pass/replace_symbolic.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#include <libasr/asr.h>
21
#include <libasr/containers.h>
32
#include <libasr/exception.h>
43
#include <libasr/asr_utils.h>
@@ -57,7 +56,7 @@ class ReplaceSymbolicVisitor : public PassUtils::PassVisitor<ReplaceSymbolicVisi
5756
ASR::asr_t* new_subrout = ASRUtils::make_Function_t_util(al, x.base.base.loc,
5857
fn_symtab, s2c(al, new_name), dep.p, dep.n, args.p, args.n, body.p, body.n,
5958
nullptr, ASR::abiType::BindC, ASR::accessType::Public,
60-
ASR::deftypeType::Interface, nullptr, false, false, false,
59+
ASR::deftypeType::Interface, s2c(al, new_name), false, false, false,
6160
false, false, nullptr, 0, nullptr, 0, false, false, false, s2c(al, header));
6261
ASR::symbol_t *new_symbol = ASR::down_cast<ASR::symbol_t>(new_subrout);
6362
current_scope->add_symbol(new_name, new_symbol);
@@ -172,4 +171,4 @@ void pass_replace_symbolic(Allocator &al, ASR::TranslationUnit_t &unit,
172171
v.visit_TranslationUnit(unit);
173172
}
174173

175-
} // namespace LCompilers
174+
} // namespace LCompilers

0 commit comments

Comments
 (0)