jit: Add aarch64 JIT backend for pre-codegen transforms

This commit is contained in:
kd-11 2024-08-04 18:15:23 +03:00 committed by kd-11
parent 52c8b1ecbb
commit a976ac3353
7 changed files with 459 additions and 7 deletions

View file

@ -2605,7 +2605,7 @@ public:
for (auto& f : *m_module)
{
replace_intrinsics(f);
run_transforms(f);
}
for (const auto& func : m_functions)
@ -3089,7 +3089,7 @@ public:
for (auto& f : *_module)
{
replace_intrinsics(f);
run_transforms(f);
}
std::string log;