summaryrefslogtreecommitdiff
path: root/third_party/llvm-project/include/llvm/Support/ReverseIteration.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/llvm-project/include/llvm/Support/ReverseIteration.h')
-rw-r--r--third_party/llvm-project/include/llvm/Support/ReverseIteration.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/third_party/llvm-project/include/llvm/Support/ReverseIteration.h b/third_party/llvm-project/include/llvm/Support/ReverseIteration.h
new file mode 100644
index 000000000..5e0238d81
--- /dev/null
+++ b/third_party/llvm-project/include/llvm/Support/ReverseIteration.h
@@ -0,0 +1,19 @@
+#ifndef LLVM_SUPPORT_REVERSEITERATION_H
+#define LLVM_SUPPORT_REVERSEITERATION_H
+
+#include "llvm/Config/abi-breaking.h"
+#include "llvm/Support/PointerLikeTypeTraits.h"
+
+namespace llvm {
+
+template<class T = void *>
+bool shouldReverseIterate() {
+#if LLVM_ENABLE_REVERSE_ITERATION
+ return detail::IsPointerLike<T>::value;
+#else
+ return false;
+#endif
+}
+
+}
+#endif