Merge pull request #15046 from aschwaighofer/without_actually_escaping_verification

Implement withoutActuallyEscaping verification
This commit is contained in:
Arnold Schwaighofer
2018-03-09 09:34:06 -08:00
committed by GitHub
33 changed files with 351 additions and 57 deletions

View File

@@ -1795,6 +1795,9 @@ public:
void visitIsUniqueOrPinnedInst(IsUniqueOrPinnedInst *CUI) {
*this << getIDAndType(CUI->getOperand());
}
void visitIsEscapingClosureInst(IsEscapingClosureInst *CUI) {
*this << getIDAndType(CUI->getOperand());
}
void visitDeallocStackInst(DeallocStackInst *DI) {
*this << getIDAndType(DI->getOperand());
}