[llvm] 295500d - [lit] Remove undefined keyword from an MCJIT test
Paul Robinson via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 31 10:51:45 PDT 2022
Author: Paul Robinson
Date: 2022-10-31T10:51:29-07:00
New Revision: 295500d57bbd50f4e374819e0c5777aee2adf7f0
URL: https://github.com/llvm/llvm-project/commit/295500d57bbd50f4e374819e0c5777aee2adf7f0
DIFF: https://github.com/llvm/llvm-project/commit/295500d57bbd50f4e374819e0c5777aee2adf7f0.diff
LOG: [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.
Added:
Modified:
llvm/test/ExecutionEngine/MCJIT/2005-12-02-TailCallBug.ll
Removed:
################################################################################
diff --git a/llvm/test/ExecutionEngine/MCJIT/2005-12-02-TailCallBug.ll b/llvm/test/ExecutionEngine/MCJIT/2005-12-02-TailCallBug.ll
index 3cde5e96b3525..28415f926ef99 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* ; <i32*> [#uses=1]
More information about the llvm-commits
mailing list