mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Detect problems with PHI node operands!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9916 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6a45da0de6
commit
579de71d08
@ -340,6 +340,12 @@ void Verifier::visitPHINode(PHINode &PN) {
|
||||
"PHI nodes not grouped at top of basic block!",
|
||||
&PN, PN.getParent());
|
||||
|
||||
// Check that all of the operands of the PHI node have the same type as the
|
||||
// result.
|
||||
for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i)
|
||||
Assert1(PN.getType() == PN.getIncomingValue(i)->getType(),
|
||||
"PHI node operands are not the same type as the result!", &PN);
|
||||
|
||||
// All other PHI node constraints are checked in the visitBasicBlock method.
|
||||
|
||||
visitInstruction(PN);
|
||||
|
Loading…
x
Reference in New Issue
Block a user