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

Unified Diff: src/compiler/operator.h

Issue 2425983002: [turbofan] Use uint32 to store the number of control outputs instead of uint16. (Closed)
Patch Set: Increase the maximum number of control outputs instead. Created 4 years, 2 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 | src/compiler/operator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/operator.h
diff --git a/src/compiler/operator.h b/src/compiler/operator.h
index a03f16269d73ff13633f39529ba89d5962318ba8..dea94f09061ca99d18ec268aacc5b0df85edcc4e 100644
--- a/src/compiler/operator.h
+++ b/src/compiler/operator.h
@@ -144,7 +144,7 @@ class V8_EXPORT_PRIVATE Operator : public NON_EXPORTED_BASE(ZoneObject) {
uint16_t control_in_;
uint16_t value_out_;
uint8_t effect_out_;
- uint16_t control_out_;
+ uint32_t control_out_;
DISALLOW_COPY_AND_ASSIGN(Operator);
};
« no previous file with comments | « no previous file | src/compiler/operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698