Chromium Code Reviews| Index: src/compiler/machine-operator.cc |
| diff --git a/src/compiler/machine-operator.cc b/src/compiler/machine-operator.cc |
| index 3daef0324ce06b602e62783385b96e23dde591c9..e08d9e31c71a7d93b248d5ce2cfa45b156dcf06e 100644 |
| --- a/src/compiler/machine-operator.cc |
| +++ b/src/compiler/machine-operator.cc |
| @@ -530,11 +530,13 @@ struct MachineOperatorGlobalCache { |
| static base::LazyInstance<MachineOperatorGlobalCache>::type kCache = |
| LAZY_INSTANCE_INITIALIZER; |
| - |
| -MachineOperatorBuilder::MachineOperatorBuilder(Zone* zone, |
| - MachineRepresentation word, |
| - Flags flags) |
| - : cache_(kCache.Get()), word_(word), flags_(flags) { |
| +MachineOperatorBuilder::MachineOperatorBuilder( |
| + Zone* zone, MachineRepresentation word, Flags flags, |
| + AlignmentRequirements alignmentConfig) |
|
Jarin
2016/05/12 04:26:13
Style nit: alignmentConfig -> alignment_config (he
|
| + : cache_(kCache.Get()), |
| + word_(word), |
| + flags_(flags), |
| + alignmentConfig_(alignmentConfig) { |
| DCHECK(word == MachineRepresentation::kWord32 || |
| word == MachineRepresentation::kWord64); |
| } |