diff options
author | Mehdi Amini <mehdi.amini@apple.com> | 2016-12-14 02:02:28 +0000 |
---|---|---|
committer | Mehdi Amini <mehdi.amini@apple.com> | 2016-12-14 02:02:28 +0000 |
commit | fd1184efb510860e4e319f72718ac05ffe335522 (patch) | |
tree | 66f8b6f5e712b4cc006cbcd47da4c39207521495 | |
parent | 939b6880d4de643ff6332c7aa1bc3f79c0c8e4f5 (diff) | |
download | bcm5719-llvm-fd1184efb510860e4e319f72718ac05ffe335522.tar.gz bcm5719-llvm-fd1184efb510860e4e319f72718ac05ffe335522.zip |
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
-rw-r--r-- | llvm/include/llvm/ADT/SmallPtrSet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/ADT/SmallPtrSet.h b/llvm/include/llvm/ADT/SmallPtrSet.h index 438f10b11a2..518ed5cd067 100644 --- a/llvm/include/llvm/ADT/SmallPtrSet.h +++ b/llvm/include/llvm/ADT/SmallPtrSet.h @@ -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 |