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..81720b2e6884dc05869eb4c8d1db597b6e4f4398 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) |
|
titzer
2016/05/19 15:23:14
s/alignmentConfig/alignmentRequirements/
|
| + : cache_(kCache.Get()), |
| + word_(word), |
| + flags_(flags), |
| + alignment_config_(alignmentConfig) { |
|
titzer
2016/05/19 15:23:14
s/alignment_config/alignment_requirements/
|
| DCHECK(word == MachineRepresentation::kWord32 || |
| word == MachineRepresentation::kWord64); |
| } |