Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(63)

Unified Diff: src/compiler/change-lowering-unittest.cc

Issue 538373003: [turbofan] Missing fix from last commit. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/change-lowering-unittest.cc
diff --git a/src/compiler/change-lowering-unittest.cc b/src/compiler/change-lowering-unittest.cc
index cad26099122bdfca9972f083ca86884013f3a3a7..197847655b49795078b8a148db2f02db6b20ca69 100644
--- a/src/compiler/change-lowering-unittest.cc
+++ b/src/compiler/change-lowering-unittest.cc
@@ -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)))));
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698