Chromium Code Reviews| Index: src/compiler/instruction.cc |
| diff --git a/src/compiler/instruction.cc b/src/compiler/instruction.cc |
| index 0df7ca0316ec3881783d07aaea0f48c7d2948688..528fd74670d7789c8d9fb91fdf0a04c9abf3a65a 100644 |
| --- a/src/compiler/instruction.cc |
| +++ b/src/compiler/instruction.cc |
| @@ -12,7 +12,8 @@ namespace v8 { |
| namespace internal { |
| namespace compiler { |
| -const auto GetRegConfig = RegisterConfiguration::Turbofan; |
| +const RegisterConfiguration* (*GetRegConfig)() = |
| + RegisterConfiguration::Turbofan; |
|
ivica.bogosavljevic
2016/10/19 14:30:40
Needed to fix the type in order to use it from the
|
| FlagsCondition CommuteFlagsCondition(FlagsCondition condition) { |
| switch (condition) { |