Merge pull request #1961 from zoddicus/fixChromiumRoll
Remove std::move that is breaking chromium roll
This commit is contained in:
@@ -252,7 +252,7 @@ public:
|
|||||||
assert(header != nullptr);
|
assert(header != nullptr);
|
||||||
Instruction* branch = new Instruction(OpBranch);
|
Instruction* branch = new Instruction(OpBranch);
|
||||||
branch->addIdOperand(header->getId());
|
branch->addIdOperand(header->getId());
|
||||||
addInstruction(std::move(std::unique_ptr<Instruction>(branch)));
|
addInstruction(std::unique_ptr<Instruction>(branch));
|
||||||
successors.push_back(header);
|
successors.push_back(header);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user