Commit 2a40210a authored by bmeurer@chromium.org's avatar bmeurer@chromium.org

[turbofan] Missing fix from last commit.

TBR=mstarzinger@chromium.org

Review URL: https://codereview.chromium.org/538373003

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@23729 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 99ccab81
......@@ -130,7 +130,8 @@ TARGET_TEST_P(ChangeLoweringCommonTest, ChangeBitToBool) {
Node* phi = reduction.replacement();
Capture<Node*> branch;
EXPECT_THAT(phi,
IsPhi(kMachAnyTagged, IsTrueConstant(), IsFalseConstant(),
IsPhi(static_cast<MachineType>(kTypeBool | kRepTagged),
IsTrueConstant(), IsFalseConstant(),
IsMerge(IsIfTrue(AllOf(CaptureEq(&branch),
IsBranch(val, graph()->start()))),
IsIfFalse(CaptureEq(&branch)))));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment