File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
lib/SILOptimizer/Transforms Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -235,10 +235,6 @@ class HashVisitor : public SILInstructionVisitor<HashVisitor, llvm::hash_code> {
235
235
lookThroughOwnershipInsts (X->getOperand ()));
236
236
}
237
237
238
- hash_code visitCondFailInst (CondFailInst *X) {
239
- return llvm::hash_combine (X->getKind (), X->getOperand ());
240
- }
241
-
242
238
hash_code visitClassMethodInst (ClassMethodInst *X) {
243
239
return llvm::hash_combine (X->getKind (), X->getType (),
244
240
lookThroughOwnershipInsts (X->getOperand ()));
@@ -1130,7 +1126,6 @@ bool CSE::canHandle(SILInstruction *Inst) {
1130
1126
case SILInstructionKind::IndexAddrInst:
1131
1127
case SILInstructionKind::PointerToAddressInst:
1132
1128
case SILInstructionKind::AddressToPointerInst:
1133
- case SILInstructionKind::CondFailInst:
1134
1129
case SILInstructionKind::EnumInst:
1135
1130
case SILInstructionKind::UncheckedEnumDataInst:
1136
1131
case SILInstructionKind::UncheckedTrivialBitCastInst:
You can’t perform that action at this time.
0 commit comments