File tree 1 file changed +2
-2
lines changed 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -4032,6 +4032,8 @@ class ASRToLLVMVisitor : public ASR::BaseVisitor<ASRToLLVMVisitor>
4032
4032
throw CodeGenError (" Function LFortran interfaces not implemented yet" );
4033
4033
} else if (s->m_abi == ASR::abiType::Interactive) {
4034
4034
h = get_hash ((ASR::asr_t *)s);
4035
+ } else if (s->m_abi == ASR::abiType::BindC) {
4036
+ h = get_hash ((ASR::asr_t *)s);
4035
4037
} else if (s->m_abi == ASR::abiType::Intrinsic || intrinsic_function) {
4036
4038
std::string func_name = s->m_name ;
4037
4039
if ( fname2arg_type.find (func_name) != fname2arg_type.end () ) {
@@ -4049,8 +4051,6 @@ class ASRToLLVMVisitor : public ASR::BaseVisitor<ASRToLLVMVisitor>
4049
4051
h = get_hash ((ASR::asr_t *)s);
4050
4052
}
4051
4053
}
4052
- } else if (s->m_abi == ASR::abiType::BindC) {
4053
- h = get_hash ((ASR::asr_t *)s);
4054
4054
} else {
4055
4055
throw CodeGenError (" ABI type not implemented yet." );
4056
4056
}
You can’t perform that action at this time.
0 commit comments