Unverified Commit 5d0e01d9 by John Kessenich Committed by GitHub

Merge pull request #1961 from zoddicus/fixChromiumRoll

Remove std::move that is breaking chromium roll
parents 90cecb52 0552c0ac
...@@ -252,7 +252,7 @@ public: ...@@ -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);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment