From 4d3e7db8a6720766d157a3bac1a3d098b42c6267 Mon Sep 17 00:00:00 2001 From: Mikhail Gudim Date: Tue, 18 Nov 2025 04:20:54 -0800 Subject: [PATCH] [RISCV] Make XFAIL test UNSUPPORTED. Currently the test cfi-multiple-location.mir is marked as XFAIL. This causes failures on some build bots because the test unexpectedly passes. Mark this test as UNSUPPORTED for now. Later I plan to merge an MR which fixes an issue in CFIInstrInserter and this test will be enabled. --- llvm/test/CodeGen/RISCV/cfi-multiple-locations.mir | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/test/CodeGen/RISCV/cfi-multiple-locations.mir b/llvm/test/CodeGen/RISCV/cfi-multiple-locations.mir index 7844589e3f93c..08544a95dedb7 100644 --- a/llvm/test/CodeGen/RISCV/cfi-multiple-locations.mir +++ b/llvm/test/CodeGen/RISCV/cfi-multiple-locations.mir @@ -1,7 +1,7 @@ # RUN: llc %s -mtriple=riscv64 \ # RUN: -run-pass=cfi-instr-inserter \ # RUN: -riscv-enable-cfi-instr-inserter=true -# XFAIL: * +# UNSUPPORTED: target={{.*}} # Technically, it is possible that a callee-saved register is saved in multiple different locations. # CFIInstrInserter should handle this, but currently it does not.