[llvm] 61d1b7c - [ORC] Tweak lazy-link testcase's UNSUPPORTED condition for armv8a some more.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Sun Nov 17 18:58:09 PST 2024


Author: Lang Hames
Date: 2024-11-18T13:54:53+11:00
New Revision: 61d1b7c5eded9b0e6e8adcd74cf181b3458656ed

URL: https://github.com/llvm/llvm-project/commit/61d1b7c5eded9b0e6e8adcd74cf181b3458656ed
DIFF: https://github.com/llvm/llvm-project/commit/61d1b7c5eded9b0e6e8adcd74cf181b3458656ed.diff

LOG: [ORC] Tweak lazy-link testcase's UNSUPPORTED condition for armv8a some more.

The change in c0cbcb4efe8 was insufficient: The armv8a subarch is a property of
the compiled testcase, not the test target triple. Having double-checked the
EPCIndirectionUtils::Create method we want to disable this test for all arm.*
prefixes except arm64 (we want the test to continue working on Darwin).

Added: 
    

Modified: 
    llvm/test/ExecutionEngine/JITLink/Generic/lazy-link.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/ExecutionEngine/JITLink/Generic/lazy-link.ll b/llvm/test/ExecutionEngine/JITLink/Generic/lazy-link.ll
index b5fa51b4684518..72325e198721b6 100644
--- a/llvm/test/ExecutionEngine/JITLink/Generic/lazy-link.ll
+++ b/llvm/test/ExecutionEngine/JITLink/Generic/lazy-link.ll
@@ -10,7 +10,7 @@
 ; RUN: llvm-jitlink -noexec -show-linked-files %t/main.o -lazy %t/foo.o \
 ; RUN:     -lazy %t/x.o | FileCheck %s
 ;
-; UNSUPPORTED: system-windows, target=armv8a{{.*}}, target=powerpc64{{.*}}
+; UNSUPPORTED: system-windows, target={{arm[^6][^4].*}}, target=powerpc64{{.*}}
 ;
 ; CHECK: Linking {{.*}}main.o
 ; CHECK-DAG: Linking <indirect stubs graph #1>


        


More information about the llvm-commits mailing list