[RISCV] Fix mgather -> riscv.masked.strided.load combine not extending indices (...
[llvm-project.git] / libcxx / test / std / iterators / predef.iterators / reverse.iterators / reverse.iter.cmp / less-equal.pass.cpp
blobe9cea6250a7645379a4d295b7b8595623a016a06
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 // <iterator>
11 // reverse_iterator
13 // template <RandomAccessIterator Iter1, RandomAccessIterator Iter2>
14 // requires HasGreater<Iter1, Iter2>
15 // bool operator<=(const reverse_iterator<Iter1>& x, const reverse_iterator<Iter2>& y); // constexpr in C++17
17 #include <iterator>
18 #include <cassert>
20 #include "test_macros.h"
21 #include "test_iterators.h"
23 template <class It>
24 TEST_CONSTEXPR_CXX17 void test(It l, It r, bool x) {
25 const std::reverse_iterator<It> r1(l);
26 const std::reverse_iterator<It> r2(r);
27 assert((r1 <= r2) == x);
30 TEST_CONSTEXPR_CXX17 bool tests() {
31 const char* s = "1234567890";
32 test(random_access_iterator<const char*>(s), random_access_iterator<const char*>(s), true);
33 test(random_access_iterator<const char*>(s), random_access_iterator<const char*>(s+1), false);
34 test(random_access_iterator<const char*>(s+1), random_access_iterator<const char*>(s), true);
35 test(s, s, true);
36 test(s, s+1, false);
37 test(s+1, s, true);
38 return true;
41 int main(int, char**) {
42 tests();
43 #if TEST_STD_VER > 14
44 static_assert(tests(), "");
45 #endif
46 return 0;