mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Revert r111058, the lint check for indirectbr successors that aren't
address-taken. This can occur normally, if the code which took the address got DCEd. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111121 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -521,12 +521,6 @@ void Lint::visitIndirectBrInst(IndirectBrInst &I) {
|
||||
|
||||
Assert1(I.getNumDestinations() != 0,
|
||||
"Undefined behavior: indirectbr with no destinations", &I);
|
||||
|
||||
for (unsigned i = 0, e = I.getNumDestinations(); i != e; ++i)
|
||||
Assert1(I.getDestination(i)->hasAddressTaken(),
|
||||
"Unusual: indirectbr destination has not "
|
||||
"had its address taken",
|
||||
&I);
|
||||
}
|
||||
|
||||
void Lint::visitExtractElementInst(ExtractElementInst &I) {
|
||||
|
Reference in New Issue
Block a user