| Index: src/compiler/instruction.cc
|
| diff --git a/src/compiler/instruction.cc b/src/compiler/instruction.cc
|
| index 174ee300fee63348fbf0791801528d628da2b2a2..8ea023ed1125a872230cb0a410adf55ab5fb0cd4 100644
|
| --- a/src/compiler/instruction.cc
|
| +++ b/src/compiler/instruction.cc
|
| @@ -717,7 +717,7 @@ std::ostream& operator<<(std::ostream& os,
|
| InstructionBlocks* InstructionSequence::InstructionBlocksFor(
|
| Zone* zone, const Schedule* schedule) {
|
| InstructionBlocks* blocks = zone->NewArray<InstructionBlocks>(1);
|
| - new (blocks) InstructionBlocks(
|
| + ::new (blocks) InstructionBlocks(
|
| static_cast<int>(schedule->rpo_order()->size()), nullptr, zone);
|
| size_t rpo_number = 0;
|
| for (BasicBlockVector::const_iterator it = schedule->rpo_order()->begin();
|
|
|