Disable Iterating SmallPtrSet in reverse order to uncover non-determinism in codegen...
authorMehdi Amini <mehdi.amini@apple.com>
Wed, 14 Dec 2016 02:02:28 +0000 (02:02 +0000)
committerMehdi Amini <mehdi.amini@apple.com>
Wed, 14 Dec 2016 02:02:28 +0000 (02:02 +0000)
Bots are broken and needs to be fixed before having this on by default.
The feature was committed in r289619.

llvm-svn: 289624

llvm/include/llvm/ADT/SmallPtrSet.h

index 438f10b..518ed5c 100644 (file)
@@ -29,7 +29,7 @@
 #if LLVM_ENABLE_ABI_BREAKING_CHECKS
 namespace llvm {
 template <class T = void> struct ReverseIterate { static bool value; };
-template <class T> bool ReverseIterate<T>::value = true;
+template <class T> bool ReverseIterate<T>::value = false;
 }
 #endif