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

Unified Diff: src/compiler/simplified-lowering.cc

Issue 555283004: [turbofan] Next step towards shared operators. (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 | « src/compiler/representation-change.h ('k') | src/compiler/simplified-operator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/simplified-lowering.cc
diff --git a/src/compiler/simplified-lowering.cc b/src/compiler/simplified-lowering.cc
index 74af3980ff7215adc96a40bb47efae53b7d5804d..27212f7975c71c584fa27194b670b46e20ed7ae5 100644
--- a/src/compiler/simplified-lowering.cc
+++ b/src/compiler/simplified-lowering.cc
@@ -336,15 +336,15 @@ class RepresentationSelector {
}
}
- Operator* Int32Op(Node* node) {
+ const Operator* Int32Op(Node* node) {
return changer_->Int32OperatorFor(node->opcode());
}
- Operator* Uint32Op(Node* node) {
+ const Operator* Uint32Op(Node* node) {
return changer_->Uint32OperatorFor(node->opcode());
}
- Operator* Float64Op(Node* node) {
+ const Operator* Float64Op(Node* node) {
return changer_->Float64OperatorFor(node->opcode());
}
« no previous file with comments | « src/compiler/representation-change.h ('k') | src/compiler/simplified-operator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698