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

Unified Diff: src/compiler/diamond.h

Issue 1513543003: [turbofan] Make MachineType a pair of enums. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Moar rebase Created 5 years 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 | « src/compiler/common-operator.cc ('k') | src/compiler/escape-analysis.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/diamond.h
diff --git a/src/compiler/diamond.h b/src/compiler/diamond.h
index f562092a8a4395f7acadb89df68dc84e0a2d4882..e1333052d745bbf12769781283dec8ed96eb2ae4 100644
--- a/src/compiler/diamond.h
+++ b/src/compiler/diamond.h
@@ -49,8 +49,8 @@ struct Diamond {
}
}
- Node* Phi(MachineType machine_type, Node* tv, Node* fv) {
- return graph->NewNode(common->Phi(machine_type, 2), tv, fv, merge);
+ Node* Phi(MachineRepresentation rep, Node* tv, Node* fv) {
+ return graph->NewNode(common->Phi(rep, 2), tv, fv, merge);
}
};
« no previous file with comments | « src/compiler/common-operator.cc ('k') | src/compiler/escape-analysis.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698