Build warning: Fix #2167: Remove nested reuse of 'unreachable'.

This commit is contained in:
John Kessenich 2020-04-01 00:46:57 -06:00
parent e157435c1e
commit 1fff362355

View File

@ -235,8 +235,7 @@ public:
assert(instructions.size() > 0);
instructions.resize(1);
successors.clear();
Instruction* unreachable = new Instruction(OpUnreachable);
addInstruction(std::unique_ptr<Instruction>(unreachable));
addInstruction(std::unique_ptr<Instruction>(new Instruction(OpUnreachable)));
}
// Change this block into a canonical dead continue target branching to the
// given header ID. Delete instructions as necessary. A canonical dead continue