diff --git a/interpreter/cling/lib/Interpreter/IncrementalJIT.cpp b/interpreter/cling/lib/Interpreter/IncrementalJIT.cpp index 8705b32f93491..975b0bd10623b 100644 --- a/interpreter/cling/lib/Interpreter/IncrementalJIT.cpp +++ b/interpreter/cling/lib/Interpreter/IncrementalJIT.cpp @@ -352,7 +352,8 @@ static bool UseJITLink(const Triple& TT) { if (TT.getArch() == Triple::riscv64 || (TT.isOSBinFormatMachO() && (TT.getArch() == Triple::aarch64 || TT.getArch() == Triple::x86_64)) || - (TT.isOSBinFormatELF() && TT.getArch() == Triple::ppc64le)) { + (TT.isOSBinFormatELF() && + (TT.getArch() == Triple::aarch64 || TT.getArch() == Triple::ppc64le))) { jitLink = true; } // Finally, honor the user's choice by setting an environment variable.