From 96b7af681545af980cd8077a739ce06628039bfa Mon Sep 17 00:00:00 2001 From: Florian Hahn Date: Thu, 23 Jun 2022 13:44:41 +0200 Subject: [PATCH] [VPlan] Update unit test after 569d84fe99e63. --- llvm/unittests/Transforms/Vectorize/VPlanTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/unittests/Transforms/Vectorize/VPlanTest.cpp b/llvm/unittests/Transforms/Vectorize/VPlanTest.cpp index 31bd441..0e57951 100644 --- a/llvm/unittests/Transforms/Vectorize/VPlanTest.cpp +++ b/llvm/unittests/Transforms/Vectorize/VPlanTest.cpp @@ -1011,7 +1011,7 @@ TEST(VPRecipeTest, MayHaveSideEffectsAndMayReadWriteMemory) { { VPValue Mask; VPBranchOnMaskRecipe Recipe(&Mask); - EXPECT_FALSE(Recipe.mayHaveSideEffects()); + EXPECT_TRUE(Recipe.mayHaveSideEffects()); EXPECT_FALSE(Recipe.mayReadFromMemory()); EXPECT_FALSE(Recipe.mayWriteToMemory()); EXPECT_FALSE(Recipe.mayReadOrWriteMemory()); -- 2.7.4