From 873578057df2bf1379570f7b77a2c9172912db51 Mon Sep 17 00:00:00 2001 From: Vitaly Buka Date: Fri, 12 Jul 2024 20:46:15 -0700 Subject: [PATCH] [Pattern] Disable a new buggy test Introduced with #98282 --- llvm/unittests/IR/PatternMatch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/unittests/IR/PatternMatch.cpp b/llvm/unittests/IR/PatternMatch.cpp index 60b7a6dd4d0ced..b82711ec244a6d 100644 --- a/llvm/unittests/IR/PatternMatch.cpp +++ b/llvm/unittests/IR/PatternMatch.cpp @@ -2319,7 +2319,7 @@ TYPED_TEST(MutableConstTest, /* FIXME: UAR bug */ DISABLED_ICmp) { .match((InstructionType)IRB.CreateICmp(Pred, L, R))); } -TYPED_TEST(MutableConstTest, FCmp) { +TYPED_TEST(MutableConstTest, /* FIXME: UAR bug */ DISABLED_FCmp) { auto &IRB = PatternMatchTest::IRB; typedef std::tuple_element_t<0, TypeParam> ValueType;