Index: include/llvm/ADT/SmallPtrSet.h =================================================================== --- include/llvm/ADT/SmallPtrSet.h +++ include/llvm/ADT/SmallPtrSet.h @@ -290,12 +290,6 @@ SmallPtrSetIterator operator++(int) { // Postincrement SmallPtrSetIterator tmp = *this; -#if LLVM_ENABLE_ABI_BREAKING_CHECKS - if (ReverseIterate::value) { - --*this; - return tmp; - } -#endif ++*this; return tmp; }