forked from OSchip/llvm-project
Revert "[SCCP] Throw away dead code. NFC."
This reverts commit r268568, as it broke the bots. llvm-svn: 268570
This commit is contained in:
parent
af2312feb7
commit
a7f5e88932
|
@ -500,6 +500,9 @@ private:
|
||||||
visitTerminatorInst(II);
|
visitTerminatorInst(II);
|
||||||
}
|
}
|
||||||
void visitCallSite (CallSite CS);
|
void visitCallSite (CallSite CS);
|
||||||
|
void visitResumeInst (TerminatorInst &I) { /*returns void*/ }
|
||||||
|
void visitUnreachableInst(TerminatorInst &I) { /*returns void*/ }
|
||||||
|
void visitFenceInst (FenceInst &I) { /*returns void*/ }
|
||||||
void visitAtomicCmpXchgInst(AtomicCmpXchgInst &I) {
|
void visitAtomicCmpXchgInst(AtomicCmpXchgInst &I) {
|
||||||
markAnythingOverdefined(&I);
|
markAnythingOverdefined(&I);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue