Disable Iterating SmallPtrSet in reverse order to uncover non-determinism in codegen by default

Bots are broken and needs to be fixed before having this on by default.
The feature was committed in r289619.

llvm-svn: 289624
This commit is contained in:
Mehdi Amini 2016-12-14 02:02:28 +00:00
parent f2bc70c266
commit 70b653afcb

View 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