[llvm] 8735780 - [Pattern] Disable a new buggy test

Vitaly Buka via llvm-commits llvm-commits at lists.llvm.org
Fri Jul 12 20:48:26 PDT 2024


Author: Vitaly Buka
Date: 2024-07-12T20:46:15-07:00
New Revision: 873578057df2bf1379570f7b77a2c9172912db51

URL: https://github.com/llvm/llvm-project/commit/873578057df2bf1379570f7b77a2c9172912db51
DIFF: https://github.com/llvm/llvm-project/commit/873578057df2bf1379570f7b77a2c9172912db51.diff

LOG: [Pattern] Disable a new buggy test

Introduced with #98282

Added: 
    

Modified: 
    llvm/unittests/IR/PatternMatch.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/unittests/IR/PatternMatch.cpp b/llvm/unittests/IR/PatternMatch.cpp
index 60b7a6dd4d0c..b82711ec244a 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;


        


More information about the llvm-commits mailing list