]> granicus.if.org Git - llvm/commitdiff
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.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@289624 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/SmallPtrSet.h

index 438f10b11a2dc54bd2a41e991456b71f009602ff..518ed5cd0672231f5cffb948855297069c0ac300 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