From 4d192807b2b13f7cf77e86dd4528fa7dcf8da8a2 Mon Sep 17 00:00:00 2001 From: chenli Date: Wed, 30 Apr 2025 21:55:29 +0800 Subject: [PATCH] [clang][LoongArch] Fix the testcase apply-baseline-config.c Fix the failed testcase on LoongArch machine after Autotuner support. --- clang/test/Autotuning/BaselineConfig/lit.local.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang/test/Autotuning/BaselineConfig/lit.local.cfg b/clang/test/Autotuning/BaselineConfig/lit.local.cfg index 33afa7c31e0f..cc5c32e78384 100644 --- a/clang/test/Autotuning/BaselineConfig/lit.local.cfg +++ b/clang/test/Autotuning/BaselineConfig/lit.local.cfg @@ -1,2 +1,2 @@ -if config.host_arch in ["x86", "X86", "x86_64"]: - config.unsupported = True \ No newline at end of file +if config.host_arch in ["x86", "X86", "x86_64", "loongarch64"]: + config.unsupported = True -- Gitee