From fa802b9cc962646a89df5aa7a6d52fd8026ef4d0 Mon Sep 17 00:00:00 2001 From: usertam Date: Sun, 2 Mar 2025 16:45:16 +0800 Subject: [PATCH] [lit] Add aarch64 to JIT darwin assertion Fix building on aarch64-apple-darwin. --- llvm/test/lit.cfg.py | 1 + 1 file changed, 1 insertion(+) diff --git a/llvm/test/lit.cfg.py b/llvm/test/lit.cfg.py index aad7a088551b2..0c941fda799fd 100644 --- a/llvm/test/lit.cfg.py +++ b/llvm/test/lit.cfg.py @@ -588,6 +588,7 @@ def host_unwind_supports_jit(): assert ( "arm64" in config.host_triple + or "aarch64" in config.host_triple or "x86_64" in config.host_triple )