Skip to content

Commit 4b6bc33

Browse files
fhahnTIFitis
authored andcommitted
[VPlan] Update check line in verifier unit test w/o assertions.
Should fix failures with assertions disabled, including https://lab.llvm.org/buildbot/#/builders/2/builds/24015.
1 parent e873de0 commit 4b6bc33

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

llvm/unittests/Transforms/Vectorize/VPlanVerifierTest.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,9 @@ TEST_F(VPVerifierTest, VPPhiIncomingValueDoesntDominateIncomingBlock) {
174174
" EMIT vp<%1> = phi [ vp<%2>, preheader ]",
175175
::testing::internal::GetCapturedStderr().c_str());
176176
#else
177-
EXPECT_STREQ("Use before def!\n",
178-
::testing::internal::GetCapturedStderr().c_str());
177+
EXPECT_STREQ("Incoming def at index 0 does not dominate incoming block!\n" ::
178+
testing::internal::GetCapturedStderr()
179+
.c_str());
179180
#endif
180181
#endif
181182
}

0 commit comments

Comments
 (0)