/llvm-project/llvm/test/Transforms/LoopVectorize/ |
H A D | select-min-index.ll | 74 %min.idx = phi i64 [ 0, %entry ], [ %min.idx.next, %loop ] 75 %min.val = phi i64 [ 0, %entry ], [ %min.val.next, %loop ] 78 %cmp = icmp ugt i64 %min.val, %l 79 %min.val.next = tail call i64 @llvm.umin.i64(i64 %min.val, i64 %l) 80 %min.idx.next = select i1 %cmp, i64 %iv, i64 %min.idx 86 %res = phi i64 [ %min [all...] |
/llvm-project/libcxx/test/std/time/time.zone/time.zone.timezone/time.zone.members/ |
H A D | get_info.local_time.pass.cpp | 114 …std::chrono::sys_info(std::chrono::sys_seconds::min(), std::chrono::sys_seconds::max(), 0s, 0min, … in test_gmt() 115 … std::chrono::sys_info(std::chrono::sys_seconds(0s), std::chrono::sys_seconds(0s), 0s, 0min, "")), in test_gmt() 116 tz->get_info(std::chrono::local_seconds::min())); in test_gmt() 130 …std::chrono::sys_info(std::chrono::sys_seconds::min(), std::chrono::sys_seconds::max(), 1h, 0min, … in test_local_time_out_of_range() 131 … std::chrono::sys_info(std::chrono::sys_seconds(0s), std::chrono::sys_seconds(0s), 0s, 0min, "")), in test_local_time_out_of_range() 132 tz->get_info(std::chrono::local_seconds::min())); in test_local_time_out_of_range() 137 …std::chrono::sys_info(std::chrono::sys_seconds::min(), std::chrono::sys_seconds::max(), 1h, 0min, … in test_local_time_out_of_range() 138 … std::chrono::sys_info(std::chrono::sys_seconds(0s), std::chrono::sys_seconds(0s), 0s, 0min, "")), in test_local_time_out_of_range() 139 tz->get_info(std::chrono::local_seconds::min() + 59min + 59s)); in test_local_time_out_of_range() 144 …std::chrono::sys_info(std::chrono::sys_seconds::min(), std::chrono::sys_seconds::max(), 1h, 0min, … in test_local_time_out_of_range() [all …]
|
H A D | get_info.sys_time.pass.cpp | 124 std::chrono::sys_seconds::min(), in test_gmt() 129 tz->get_info(std::chrono::sys_seconds::min())); in test_gmt() 132 std::chrono::sys_seconds::min(), in test_gmt() 141 std::chrono::sys_seconds::min(), in test_gmt() 156 std::chrono::sys_seconds::min(), in test_durations() 192 std::chrono::sys_seconds::min(), // in test_antarctica_syowa() 197 tz->get_info(std::chrono::sys_seconds::min())); in test_antarctica_syowa() 201 std::chrono::sys_seconds::min(), // in test_antarctica_syowa() 249 std::chrono::sys_seconds::min(), in test_asia_hong_kong() 251 7h + 36min + 42s, in test_asia_hong_kong() [all …]
|
/llvm-project/clang/unittests/StaticAnalyzer/ |
H A D | RangeSetTest.cpp | 56 static constexpr T MIN = std::numeric_limits<T>::min(); member 68 static_assert(MIN < A && A < B && B < MID && MID < C && C < D && D < MAX, 286 constexpr auto MIN = TV::MIN; in TYPED_TEST() local 294 this->checkNegate({{MIN, A}}, {{MIN, MIN}, {D, MAX}}); in TYPED_TEST() 295 this->checkNegate({{MIN, C}}, {{MIN, MI in TYPED_TEST() 322 constexpr auto MIN = TV::MIN; TYPED_TEST() local 389 constexpr auto MIN = TV::MIN; TYPED_TEST() local 422 constexpr auto MIN = TV::MIN; TYPED_TEST() local 441 constexpr auto MIN = TV::MIN; TYPED_TEST() local 742 constexpr auto MIN = TV::MIN; TYPED_TEST() local 784 constexpr auto MIN = TV::MIN; TYPED_TEST() local 826 constexpr auto MIN = TV::MIN; TYPED_TEST() local 913 constexpr auto MIN = TV::MIN; TYPED_TEST() local 958 constexpr auto MIN = TV::MIN; TYPED_TEST() local 1023 constexpr auto MIN = TV::MIN; TYPED_TEST() local [all...] |
/llvm-project/llvm/test/Transforms/InstCombine/ |
H A D | minmax-of-minmax.ll | 10 %min = select i1 %cmp1, i32 %x, i32 %y 13 %cmp3 = icmp sgt i32 %max, %min 14 %r = select i1 %cmp3, i32 %max, i32 %min 24 %min = select i1 %cmp1, i32 %y, i32 %x 27 %cmp3 = icmp sgt i32 %max, %min 28 %r = select i1 %cmp3, i32 %max, i32 %min 38 %min = select i1 %cmp1, i32 %x, i32 %y 41 %cmp3 = icmp slt i32 %min, %max 42 %r = select i1 %cmp3, i32 %max, i32 %min 52 %min = select <2 x i1> %cmp1, <2 x i32> %y, <2 x i32> %x [all …]
|
/llvm-project/mlir/test/Dialect/SPIRV/Transforms/ |
H A D | gl-canonicalize.mlir | 4 // CHECK-SAME: (%[[INPUT:.*]]: f32, %[[MIN:.*]]: f32, %[[MAX:.*]]: f32) 5 func.func @clamp_fordlessthan(%input: f32, %min: f32, %max: f32) -> f32 { 6 // CHECK: [[RES:%.*]] = spirv.GL.FClamp %[[INPUT]], %[[MIN]], %[[MAX]] 7 %0 = spirv.FOrdLessThan %min, %input : f32 8 %mid = spirv.Select %0, %input, %min : i1, f32 19 // CHECK-SAME: (%[[INPUT:.*]]: f32, %[[MIN:.*]]: f32, %[[MAX:.*]]: f32) 20 func.func @clamp_fordlessthan(%input: f32, %min: f32, %max: f32) -> f32 { 21 // CHECK: [[RES:%.*]] = spirv.GL.FClamp %[[INPUT]], %[[MIN]], %[[MAX]] 22 %0 = spirv.FOrdLessThan %input, %min : f32 23 %mid = spirv.Select %0, %min, %input : i1, f32 [all …]
|
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/readability/ |
H A D | use-std-min-max.cpp | 1 // RUN: %check_clang_tidy -std=c++11-or-later %s readability-use-std-min-max %t -- -- -fno-delayed-template-parsing 28 // CHECK-MESSAGES: :[[@LINE+2]]:3: warning: use `std::max` instead of `<` [readability-use-std-min-max] in foo() 33 // CHECK-MESSAGES: :[[@LINE+2]]:3: warning: use `std::min` instead of `<` [readability-use-std-min-max] in foo() 34 // CHECK-FIXES: value2 = std::min(value1, value2); in foo() 38 // CHECK-MESSAGES: :[[@LINE+2]]:3: warning: use `std::min` instead of `>` [readability-use-std-min-max] in foo() 39 // CHECK-FIXES: value2 = std::min(value2, value1); in foo() 43 // CHECK-MESSAGES: :[[@LINE+2]]:3: warning: use `std::max` instead of `>` [readability-use-std-min-max] in foo() 52 // CHECK-MESSAGES: :[[@LINE+3]]:3: warning: use `std::max` instead of `<` [readability-use-std-min in foo() [all...] |
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/modernize/ |
H A D | min-max-use-initializer-list.cpp | 1 // RUN: %check_clang_tidy %s modernize-min-max-use-initializer-list %t 103 const T& min( const T& a, const T& b ) { in min() function 108 T min(std::initializer_list<T> ilist) in min() function 115 const T& min( const T& a, const T& b, Compare comp ) { in min() function 120 T min(std::initializer_list<T> ilist, Compare comp) { in min() function 140 // CHECK-MESSAGES: :[[@LINE-1]]:12: warning: do not use nested 'std::max' calls, use an initializer list instead [modernize-min-max-use-initializer-list] 143 int min1 = std::min(1, std::min(2, 3)); 144 // CHECK-MESSAGES: :[[@LINE-1]]:12: warning: do not use nested 'std::min' calls, use an initializer list instead [modernize-min [all...] |
/llvm-project/llvm/test/Transforms/ConstraintElimination/ |
H A D | pointercast.ll | 4 define i1 @gep0_and_cmp(ptr readonly %src, ptr readnone %min, ptr readnone %max) { 6 ; CHECK-NEXT: check.0.min: 8 ; CHECK-NEXT: [[MIN_C:%.*]] = getelementptr i32, ptr [[MIN:%.*]], i64 0 32 check.0.min: 34 %min.c = getelementptr i32, ptr %min, i64 0 38 %c.min.0 = icmp ult ptr %src.c, %min.c 41 %or = or i1 %c.min.0, %c.max.3 48 %c.3.min = icmp ult ptr %gep.3, %min 50 %res.1 = xor i1 %c.3.min, %c.3.max 53 %c.1.min = icmp ult ptr %gep.1, %min [all …]
|
/llvm-project/llvm/test/CodeGen/AMDGPU/ |
H A D | amdgpu-simplify-libcall-fmin-splat.ll | 42 ; CHECK-NEXT: [[MIN:%.*]] = tail call <2 x float> @llvm.minnum.v2f32(<2 x float> [[X]], <2 x flo… 43 ; CHECK-NEXT: ret <2 x float> [[MIN]] 45 %min = tail call <2 x float> @_Z4fminDv2_ff(<2 x float> %x, float %y) 46 ret <2 x float> %min 54 ; CHECK-NEXT: [[MIN:%.*]] = tail call <2 x float> @llvm.minnum.v2f32(<2 x float> [[SHUFFLE]], <2… 55 ; CHECK-NEXT: ret <2 x float> [[MIN]] 59 %min = tail call <2 x float> @_Z4fminDv2_fS_(<2 x float> %shuffle, <2 x float> %y) 60 ret <2 x float> %min 68 ; CHECK-NEXT: [[MIN:%.*]] = tail call <3 x float> @llvm.minnum.v3f32(<3 x float> [[X]], <3 x flo… 69 ; CHECK-NEXT: ret <3 x float> [[MIN]] [all …]
|
H A D | amdgpu-simplify-libcall-fmax-splat.ll | 42 ; CHECK-NEXT: [[MIN:%.*]] = tail call <2 x float> @llvm.maxnum.v2f32(<2 x float> [[X]], <2 x flo… 43 ; CHECK-NEXT: ret <2 x float> [[MIN]] 45 %min = tail call <2 x float> @_Z4fmaxDv2_ff(<2 x float> %x, float %y) 46 ret <2 x float> %min 54 ; CHECK-NEXT: [[MIN:%.*]] = tail call <2 x float> @llvm.maxnum.v2f32(<2 x float> [[SHUFFLE]], <2… 55 ; CHECK-NEXT: ret <2 x float> [[MIN]] 59 %min = tail call <2 x float> @_Z4fmaxDv2_fS_(<2 x float> %shuffle, <2 x float> %y) 60 ret <2 x float> %min 68 ; CHECK-NEXT: [[MIN:%.*]] = tail call <3 x float> @llvm.maxnum.v3f32(<3 x float> [[X]], <3 x flo… 69 ; CHECK-NEXT: ret <3 x float> [[MIN]] [all …]
|
H A D | amdgcn-ieee.ll | 8 ; GCN: v_min_f32_e32 [[MIN:v[0-9]+]], [[QUIET0]], [[QUIET1]] 13 %min = call float @llvm.minnum.f32(float %val0, float %val1) 14 store volatile float %min, ptr addrspace(1) undef 23 ; GCN: v_min_f32_e32 [[MIN:v[0-9]+]], [[QUIET0]], [[QUIET1]] 28 %min = call float @llvm.minnum.f32(float %val0, float %val1) 29 store volatile float %min, ptr addrspace(1) undef 38 ; GCN: v_min_f32_e32 [[MIN:v[0-9]+]], [[VAL0]], [[VAL1]] 43 %min = call float @llvm.minnum.f32(float %val0, float %val1) 44 store volatile float %min, ptr addrspace(1) undef 53 ; GCN: v_min_f32_e32 [[MIN:v[0-9]+]], [[QUIET0]], [[QUIET1]] [all …]
|
H A D | fmin_fmax_legacy.amdgcn.ll | 10 ; SI: v_max_legacy_f32_e64 [[MIN:v[0-9]+]], -1.0, -v0 17 %min.a = select i1 %cmp.a, float %fneg.a, float -1.0 18 ret float %min.a 24 ; SI: v_max_legacy_f32_e64 [[MIN:v[0-9]+]], 1.0, -v0 33 %min.a = select i1 %cmp.a, float %fneg.a, float 1.0 34 ret float %min.a 40 ; SI-SAFE: v_min_legacy_f32_e64 [[MIN:v[0-9]+]], -1.0, -v0 45 ; GCN-NONAN: v_min_f32_e64 [[MIN:v[0-9]+]], -v0, -1.0 49 %min.a = select i1 %cmp.a, float %fneg.a, float -1.0 50 ret float %min.a [all …]
|
/llvm-project/llvm/test/Transforms/AggressiveInstCombine/X86/ |
H A D | fptosisat.ll | 7 ; CHECK-NEXT: [[MIN:%.*]] = call i64 @llvm.smin.i64(i64 [[CONV]], i64 2147483647) 8 ; CHECK-NEXT: [[MAX:%.*]] = call i64 @llvm.smax.i64(i64 [[MIN]], i64 -2147483648) 12 %min = call i64 @llvm.smin.i64(i64 %conv, i64 2147483647) 13 %max = call i64 @llvm.smax.i64(i64 %min, i64 -2147483648) 20 ; CHECK-NEXT: [[MIN:%.*]] = call i64 @llvm.smin.i64(i64 [[CONV]], i64 1073741823) 21 ; CHECK-NEXT: [[MAX:%.*]] = call i64 @llvm.smax.i64(i64 [[MIN]], i64 -1073741824) 25 %min = call i64 @llvm.smin.i64(i64 %conv, i64 1073741823) 26 %max = call i64 @llvm.smax.i64(i64 %min, i64 -1073741824) 33 ; CHECK-NEXT: [[MIN:%.*]] = call i32 @llvm.smin.i32(i32 [[CONV]], i32 32767) 34 ; CHECK-NEXT: [[MAX:%.*]] = call i32 @llvm.smax.i32(i32 [[MIN]], i3 [all...] |
/llvm-project/clang/test/CodeGenHLSL/builtins/ |
H A D | min.hlsl | 11 int16_t test_min_short(int16_t p0, int16_t p1) { return min(p0, p1); } 14 int16_t2 test_min_short2(int16_t2 p0, int16_t2 p1) { return min(p0, p1); } 17 int16_t3 test_min_short3(int16_t3 p0, int16_t3 p1) { return min(p0, p1); } 20 int16_t4 test_min_short4(int16_t4 p0, int16_t4 p1) { return min(p0, p1); } 24 uint16_t test_min_ushort(uint16_t p0, uint16_t p1) { return min(p0, p1); } 27 uint16_t2 test_min_ushort2(uint16_t2 p0, uint16_t2 p1) { return min(p0, p1); } 30 uint16_t3 test_min_ushort3(uint16_t3 p0, uint16_t3 p1) { return min(p0, p1); } 33 uint16_t4 test_min_ushort4(uint16_t4 p0, uint16_t4 p1) { return min(p0, p1); } 38 int test_min_int(int p0, int p1) { return min(p0, p1); } 41 int2 test_min_int2(int2 p0, int2 p1) { return min(p [all...] |
/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPURegBankCombiner.cpp | 69 unsigned Min, Max, Med; 173 // 4 operand commutes of: min(max(Val, K0), K1). in matchMed() 174 // Find K1 from outer instr: min(max(...), K1) or min(K1, max(...)). in matchMed() 176 // 4 operand commutes of: max(min(Val, K1), K0). in matchMed() 177 // Find K0 from outer instr: max(min(...), K0) or max(K0, min(...)). in matchMed() 178 // Find K1 and Val from inner instr: min(K1, Val) or min(Val, K1). in matchMed() 183 MMMOpc.Min, m_CommutativeBinO in matchMed() 71 unsigned Min, Max, Med; global() member [all...] |
/llvm-project/llvm/test/Transforms/AggressiveInstCombine/AArch64/ |
H A D | fptosisat.ll | 12 %min = call i64 @llvm.smin.i64(i64 %conv, i64 2147483647) 13 %max = call i64 @llvm.smax.i64(i64 %min, i64 -2147483648) 20 ; CHECK-NEXT: [[MIN:%.*]] = call i64 @llvm.smin.i64(i64 [[CONV]], i64 1073741823) 21 ; CHECK-NEXT: [[MAX:%.*]] = call i64 @llvm.smax.i64(i64 [[MIN]], i64 -1073741824) 25 %min = call i64 @llvm.smin.i64(i64 %conv, i64 1073741823) 26 %max = call i64 @llvm.smax.i64(i64 %min, i64 -1073741824) 33 ; CHECK-NEXT: [[MIN:%.*]] = call i32 @llvm.smin.i32(i32 [[CONV]], i32 32767) 34 ; CHECK-NEXT: [[MAX:%.*]] = call i32 @llvm.smax.i32(i32 [[MIN]], i32 -32768) 38 %min = call i32 @llvm.smin.i32(i32 %conv, i32 32767) 39 %max = call i32 @llvm.smax.i32(i32 %min, i3 [all...] |
/llvm-project/polly/lib/External/isl/test_inputs/codegen/omega/ |
H A D | wak1-1.c | 1 for (int c0 = a2; c0 <= min(min(a1 - 1, a3 - 1), b2); c0 += 1) 3 for (int c0 = a3; c0 <= min(min(a1 - 1, b3), a2 - 1); c0 += 1) 5 for (int c0 = max(a3, a2); c0 <= min(min(a1 - 1, b3), b2); c0 += 1) { 9 for (int c0 = max(max(a3, b3 + 1), a2); c0 <= min(a1 - 1, b2); c0 += 1) 11 for (int c0 = a1; c0 <= min(min(b1, a3 - 1), a2 - 1); c0 += 1) 13 for (int c0 = max(a1, a2); c0 <= min(min(b1, a3 - 1), b2); c0 += 1) { 17 for (int c0 = max(a1, a3); c0 <= min(min(b1, b3), a2 - 1); c0 += 1) { 21 for (int c0 = max(max(a1, a3), b3 + 1); c0 <= min(b1, a2 - 1); c0 += 1) 23 for (int c0 = max(max(a1, a3), a2); c0 <= min(min(b1, b3), b2); c0 += 1) { 28 for (int c0 = max(max(max(a1, a3), b3 + 1), a2); c0 <= min(b1, b2); c0 += 1) { [all …]
|
H A D | lefur04-0.c | 2 for (int c1 = max(0, 2 * c0 - 3); c1 <= min(c0 + 1, -c0 + 6); c1 += 1) 3 for (int c2 = c0; c2 <= min(min(3, 2 * c0 - c1 + 1), 3 * c1 + 2); c2 += 1) 4 …c1 + 3) / 3), c0 - (-c2 + 3) / 3), c2 + floord(3 * c1 - c2 - 1, 6)); c3 <= min(3, c0 + 1); c3 += 1) 5 …- 4), c1 - (-c1 + 3) / 3), c2 - (c2 + 3) / 3), c3 - (c3 + 3) / 3); c5 <= min(min(c1 + 1, c3), -c2 … 6 … / 3 - 332), 333 * c1 + c1 / 3), 333 * c2 + (c2 + 1) / 3); c6 <= min(min(min(min(min(min(1000, 500… 7 …* c0 - c6), 1000 * c3 - 2 * c6 + 2), 500 * c1 + (c6 + 1) / 2); c7 <= min(min(min(min(500 * c5 + 50…
|
/llvm-project/libcxx/test/std/numerics/rand/rand.util/rand.util.canonical/ |
H A D | generate_canonical.pass.cpp | 29 assert(f == truncate_fp((16807 - E::min()) / (static_cast<F>(E::max() - E::min()) + F(1)))); in main() 36 assert(f == truncate_fp((16807 - E::min()) / (static_cast<F>(E::max() - E::min()) + F(1)))); in main() 43 assert(f == truncate_fp((16807 - E::min()) / (static_cast<F>(E::max() - E::min()) + F(1)))); in main() 50 assert(f == truncate_fp((16807 - E::min()) / (static_cast<F>(E::max() - E::min()) + F(1)))); in main() 57 assert(f == truncate_fp((16807 - E::min()) / (static_cast<F>(E::max() - E::min()) + F(1)))); in main() 65 assert(f == truncate_fp((16807 - E::min()) / (static_cast<F>(E::max() - E::min()) + F(1)))); in main() 72 assert(f == truncate_fp((16807 - E::min()) / (static_cast<F>(E::max() - E::min()) + F(1)))); in main() 80 (16807 - E::min() + in main() 81 (282475249 - E::min()) * (static_cast<F>(E::max() - E::min()) + F(1))) / in main() 82 … ((static_cast<F>(E::max() - E::min()) + F(1)) * (static_cast<F>(E::max() - E::min()) + F(1))))); in main() [all …]
|
/llvm-project/clang/test/Analysis/ |
H A D | additive-folding-range-constraints.c | 11 // solution range across an overflow boundary (Min for <, Max for >). 39 // comparison value over an overflow boundary (Min for <, Max for >). 75 int min = INT_MIN; in mixedComparisons1() local 77 clang_analyzer_eval((a - 2) >= (min + 5LL)); // expected-warning{{TRUE}} in mixedComparisons1() 143 int min = INT_MIN; in mixedComparisons7() local 145 clang_analyzer_eval((a + 2) >= (min + 5LL)); // expected-warning{{TRUE}} in mixedComparisons7() 204 int min = INT_MIN; in mixedSignedness5() local 205 clang_analyzer_eval(a < min); // expected-warning{{UNKNOWN}} in mixedSignedness5() 206 clang_analyzer_eval((a + 2) < min); // expected-warning{{UNKNOWN}} in mixedSignedness5() 207 clang_analyzer_eval((a + 2U) < min); // expected-warning{{UNKNOWN}} in mixedSignedness5() [all …]
|
/llvm-project/llvm/test/CodeGen/Mips/ |
H A D | mipsr6-minmaxnum.ll | 9 ; MIPS32R6EL-NEXT: min.s $f0, $f14, $f14 10 ; MIPS32R6EL-NEXT: min.s $f1, $f12, $f12 12 ; MIPS32R6EL-NEXT: min.s $f0, $f1, $f0 16 ; MIPS64R6EL-NEXT: min.s $f0, $f13, $f13 17 ; MIPS64R6EL-NEXT: min.s $f1, $f12, $f12 19 ; MIPS64R6EL-NEXT: min.s $f0, $f1, $f0 28 ; MIPS32R6EL-NEXT: min.s $f0, $f14, $f14 29 ; MIPS32R6EL-NEXT: min.s $f1, $f12, $f12 35 ; MIPS64R6EL-NEXT: min.s $f0, $f13, $f13 36 ; MIPS64R6EL-NEXT: min.s $f1, $f12, $f12 [all …]
|
/llvm-project/polly/lib/External/isl/test_inputs/codegen/cloog/ |
H A D | otl.c | 3 …for (int c1 = max(c0 - (M + 2) / 5, (c0 + 1) / 2); c1 <= min(min(c0, (M + 2 * N) / 5 - 1), (2 * N … 4 …1), c0 - (M + N + 4) / 5 + 1), floord(-N + 5 * c0 - 3, 10) + 1); c2 <= min(min(min(c1, (M + N - 2)… 5 … 5) / 5 + 1), c1 + c2 - (N + 3) / 5), 2 * c2 - (N + 2) / 5); c3 <= min(min(min(min(min(c0 + 1, c1 … 6 …c0 - (M + 6) / 5 + 1), c3 - (M + 2) / 5), (c3 + 1) / 2); c4 <= min(min(min(min(min(min(min(c0, c1 …
|
/llvm-project/llvm/test/MC/MachO/ARM/ |
H A D | version-min-diagnostics2.s | 7 // WATCHOS: version-min-diagnostics2.s:[[@LINE-1]]:1: warning: .ios_version_min used while targetin… 8 // TVOS: version-min-diagnostics2.s:[[@LINE-2]]:1: warning: .ios_version_min used while targeting t… 9 // MACOSX: version-min-diagnostics2.s:[[@LINE-3]]:1: warning: .ios_version_min used while targeting… 13 // WATCHOS: version-min-diagnostics2.s:[[@LINE-1]]:1: warning: .macosx_version_min used while targe… 14 // TVOS: version-min-diagnostics2.s:[[@LINE-2]]:1: warning: .macosx_version_min used while targetin… 15 // IOS: version-min-diagnostics2.s:[[@LINE-3]]:1: warning: .macosx_version_min used while targeting… 17 // CHECK: version-min-diagnostics2.s:[[@LINE-5]]:1: warning: overriding previous version directive 18 // CHECK: version-min-diagnostics2.s:[[@LINE-12]]:1: note: previous definition is here 21 // WATCHOS: version-min-diagnostics2.s:[[@LINE-1]]:1: warning: .tvos_version_min used while targeti… 22 // MACOSX: version-min-diagnostics2.s:[[@LINE-2]]:1: warning: .tvos_version_min used while targetin… [all …]
|
/llvm-project/libcxx/test/libcxx/time/time.zone/time.zone.info/time.zone.info.local/ |
H A D | ostream.pass.cpp | 57 "{[-10484-10-16 15:30:08, 14423-03-17 15:30:07) 00:00:00 0min \"TZ\", " in test() 58 "[1970-01-01 00:00:00, 1970-01-01 00:00:00) 00:00:00 0min \"\"}"), in test() 60 tz::sys_info{tz::sys_seconds::min(), tz::sys_seconds::max(), 0s, 0min, "TZ"}, in test() 64 "{[1970-01-01 00:00:00, 2038-12-31 00:00:00) 12:23:45 -67min \"NEG\", " in test() 65 "[1970-01-01 00:00:00, 2038-12-31 00:00:00) -12:23:45 67min \"POS\"}"), in test() 70 12h + 23min + 45s, in test() 71 -67min, in test() 75 -(12h + 23min + 45s), in test() 76 67min, in test() 80 "{[1970-01-01 00:00:00, 2038-12-31 00:00:00) 12:23:45 -67min \"NEG\", " in test() [all …]
|