From 295500d57bbd50f4e374819e0c5777aee2adf7f0 Mon Sep 17 00:00:00 2001 From: Paul Robinson Date: Mon, 31 Oct 2022 10:51:29 -0700 Subject: [PATCH] [lit] Remove undefined keyword from an MCJIT test Changed 'XFAIL: mcjit-ia32' to 'XFAIL: i686 && windows' because the 'mcjit-ia32 feature isn't defined anywhere, or used anywhere else. I found this as part of other work to clean up lit keywords, so I figured I would go ahead and fix it. Verified by hacking my lit.site.cfg.py so host_triple = target_triple = "i686-pc-windows-msvc" and the test correctly reported XFAIL, while "i686-pc-linux" passes. --- llvm/test/ExecutionEngine/MCJIT/2005-12-02-TailCallBug.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/test/ExecutionEngine/MCJIT/2005-12-02-TailCallBug.ll b/llvm/test/ExecutionEngine/MCJIT/2005-12-02-TailCallBug.ll index 3cde5e9..28415f92 100644 --- a/llvm/test/ExecutionEngine/MCJIT/2005-12-02-TailCallBug.ll +++ b/llvm/test/ExecutionEngine/MCJIT/2005-12-02-TailCallBug.ll @@ -1,7 +1,7 @@ ; PR672 ; RUN: %lli -jit-kind=mcjit %s ; RUN: %lli %s -; XFAIL: mcjit-ia32 +; XFAIL: i686 && windows define i32 @main() { %f = bitcast i32 (i32, i32*, i32)* @check_tail to i32* ; [#uses=1] -- 2.7.4