| Index: src/compiler/machine-operator.cc
|
| diff --git a/src/compiler/machine-operator.cc b/src/compiler/machine-operator.cc
|
| index cd9f7c0cc8bba61ac3f4a9574c5a081785a71f9b..6cc8f3c83576ae0cbe3d45d9143405fe308c5738 100644
|
| --- a/src/compiler/machine-operator.cc
|
| +++ b/src/compiler/machine-operator.cc
|
| @@ -539,11 +539,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 alignmentRequirements)
|
| + : cache_(kCache.Get()),
|
| + word_(word),
|
| + flags_(flags),
|
| + alignment_requirements_(alignmentRequirements) {
|
| DCHECK(word == MachineRepresentation::kWord32 ||
|
| word == MachineRepresentation::kWord64);
|
| }
|
|
|