| /llvm-project/flang/test/Lower/Intrinsics/ |
| H A D | dot_product.f90 | 8 ! CHECK-SAME: %[[z:arg2]]: !fir.box<!fir.array<?xi32>> 9 subroutine dot_prod_int_default (x, y, z) argument 11 integer, dimension(1:) :: z local 15 z = dot_product(x,y) 21 ! CHECK-SAME: %[[z:arg2]]: !fir.box<!fir.array<?xi8>> 22 subroutine dot_prod_int_kind_1 (x, y, z) argument 24 integer(kind=1), dimension(1:) :: z local 28 z = dot_product(x,y) 34 ! CHECK-SAME: %[[z:arg2]]: !fir.box<!fir.array<?xi16>> 35 subroutine dot_prod_int_kind_2 (x, y, z) argument 37 integer(kind=2), dimension(1:) :: z global() local 48 dot_prod_int_kind_4(x, y, z) global() argument 50 integer(kind=4), dimension(1:) :: z global() local 61 dot_prod_int_kind_8(x, y, z) global() argument 63 integer(kind=8), dimension(1:) :: z global() local 74 dot_prod_int_kind_16(x, y, z) global() argument 76 integer(kind=16), dimension(1:) :: z global() local 87 dot_prod_real_kind_default(x, y, z) global() argument 89 real, dimension(1:) :: z global() local 100 dot_prod_real_kind_4(x, y, z) global() argument 102 real(kind=4), dimension(1:) :: z global() local 113 dot_prod_real_kind_8(x, y, z) global() argument 115 real(kind=8), dimension(1:) :: z global() local 126 dot_prod_real_kind_10(x, y, z) global() argument 128 real(kind=10), dimension(1:) :: z global() local 139 dot_prod_real_kind_16(x, y, z) global() argument 141 real(kind=16), dimension(1:) :: z global() local 152 dot_prod_double_default(x, y, z) global() argument 154 double precision, dimension(1:) :: z global() local 165 dot_prod_complex_default(x, y, z) global() argument 167 complex, dimension(1:) :: z global() local 180 dot_prod_complex_kind_4(x, y, z) global() argument 182 complex(kind=4), dimension(1:) :: z global() local 195 dot_prod_complex_kind_8(x, y, z) global() argument 197 complex(kind=8), dimension(1:) :: z global() local 210 dot_prod_complex_kind_10(x, y, z) global() argument 212 complex(kind=10), dimension(1:) :: z global() local 225 dot_prod_complex_kind_16(x, y, z) global() argument 227 complex(kind=16), dimension(1:) :: z global() local 240 dot_prod_logical(x, y, z) global() argument 242 logical, dimension(1:) :: z global() local 253 dot_product_mixed_int_real(x, y, z) global() argument 255 real, dimension(1:) :: y, z global() local 266 dot_product_mixed_int_complex(x, y, z) global() argument 268 complex, dimension(1:) :: y, z global() local 281 dot_product_mixed_real_complex(x, y, z) global() argument 283 complex, dimension(1:) :: y, z global() local [all...] |
| /llvm-project/flang/test/Lower/ |
| H A D | trigonometric-intrinsics.f90 | 21 subroutine tan_testc(z) argument 22 complex :: z local 24 z = tan(z) 28 subroutine tan_testcd(z) argument 29 complex(kind=8) :: z local 31 z = tan(z) 49 subroutine atan_testc(z) argument 50 complex :: z local 56 atan_testcd(z) global() argument 57 complex(kind=8) :: z global() local 77 cos_testc(z) global() argument 78 complex :: z global() local 84 cos_testcd(z) global() argument 85 complex(kind=8) :: z global() local 105 cosh_testc(z) global() argument 106 complex :: z global() local 112 cosh_testcd(z) global() argument 113 complex(kind=8) :: z global() local 133 sin_testc(z) global() argument 134 complex :: z global() local 140 sin_testcd(z) global() argument 141 complex(kind=8) :: z global() local 161 sinh_testc(z) global() argument 162 complex :: z global() local 168 sinh_testcd(z) global() argument 169 complex(kind=8) :: z global() local [all...] |
| H A D | power-operator.f90 | 13 real :: x, z local 15 z = x ** y 21 real :: x, z, y local 22 z = x ** y 28 real :: x, z local 30 z = x ** y 36 real(8) :: x, z local 38 z = x ** y 44 real(8) :: x, z local 46 z = x ** y [all …]
|
| /llvm-project/flang/test/Lower/HLFIR/ |
| H A D | binary-ops.f90 | 4 subroutine int_add(x, y, z) argument 5 integer :: x, y, z local 6 x = y + z 10 ! CHECK: %[[VAL_5:.*]]:2 = hlfir.declare %{{.*}}z"} : (!fir.ref<i32>, !fir.dscope) -> (!fir.ref<i32>, !fir.ref<i32>) 15 subroutine real_add(x, y, z) argument 16 real :: x, y, z local 17 x = y + z 21 ! CHECK: %[[VAL_5:.*]]:2 = hlfir.declare %{{.*}}z"} : (!fir.ref<f32>, !fir.dscope) -> (!fir.ref<f32>, !fir.ref<f32>) 26 subroutine complex_add(x, y, z) argument 27 complex :: x, y, z local 37 int_sub(x, y, z) global() argument 38 integer :: x, y, z global() local 48 real_sub(x, y, z) global() argument 49 real :: x, y, z global() local 59 complex_sub(x, y, z) global() argument 60 complex :: x, y, z global() local 70 int_mul(x, y, z) global() argument 71 integer :: x, y, z global() local 81 real_mul(x, y, z) global() argument 82 real :: x, y, z global() local 92 complex_mul(x, y, z) global() argument 93 complex :: x, y, z global() local 103 int_div(x, y, z) global() argument 104 integer :: x, y, z global() local 114 real_div(x, y, z) global() argument 115 real :: x, y, z global() local 125 complex_div(x, y, z) global() argument 126 complex :: x, y, z global() local 140 int_power(x, y, z) global() argument 141 integer :: x, y, z global() local 151 real_power(x, y, z) global() argument 152 real :: x, y, z global() local 162 complex_power(x, y, z) global() argument 163 complex :: x, y, z global() local 174 real_to_int_power(x, y, z) global() argument 176 integer :: z global() local 186 complex_to_int_power(x, y, z) global() argument 188 integer :: z global() local 294 logical_and(x, y, z) global() argument 295 logical :: x, y, z global() local 307 logical_or(x, y, z) global() argument 308 logical :: x, y, z global() local 314 logical_eqv(x, y, z) global() argument 315 logical :: x, y, z global() local 321 logical_neqv(x, y, z) global() argument 322 logical :: x, y, z global() local 328 cmplx_ctor(z, x, y) global() argument 329 complex :: z global() local 342 cmplx_ctor_2(z, x) global() argument 343 complex(8) :: z global() local [all...] |
| /llvm-project/clang/test/OpenMP/ |
| H A D | target_update_depend_messages.cpp | 27 int i, z; in tmain() local 29 #pragma omp depend target update to(z) // expected-error{{expected an OpenMP directive}} in tmain() 30 #pragma omp depend(out:argc) target update to(z) // expected-error{{expected an OpenMP directive}} in tmain() 31 …#pragma omp target depend(in:argc) update to(z) // expected-error{{unexpected OpenMP clause 'updat… in tmain() 34 #pragma omp target update to(z) depend // expected-error {{expected '(' after 'depend'}} in tmain() 35 #pragma omp target update to(z) depend( // omp4-error {{expected 'in', 'out', 'inout' or 'mutexino… in tmain() 36 #pragma omp target update to(z) depend() // omp4-error {{expected 'in', 'out', 'inout' or 'mutexino… in tmain() 37 #pragma omp target update to(z) depend(argc // omp4-error {{expected 'in', 'out', 'inout' or 'mutex… in tmain() 38 #pragma omp target update to(z) depend(source : argc) // omp4-error {{expected 'in', 'out', 'inout'… in tmain() 39 #pragma omp target update to(z) depend(source) // expected-error {{expected expression}} expected-w… in tmain() [all …]
|
| /llvm-project/llvm/test/MC/AArch64/SME/ |
| H A D | ld1b.s | 18 ld1b {za0h.b[w12, 0]}, p0/z, [x0, x0] 24 ld1b {za0h.b[w14, 5]}, p5/z, [x10, x21] 30 ld1b {za0h.b[w15, 7]}, p3/z, [x13, x8] 36 ld1b {za0h.b[w15, 15]}, p7/z, [sp] 42 ld1b {za0h.b[w12, 5]}, p3/z, [x17, x16] 48 ld1b {za0h.b[w12, 1]}, p1/z, [x1, x30] 54 ld1b {za0h.b[w14, 8]}, p5/z, [x19, x20] 60 ld1b {za0h.b[w12, 0]}, p6/z, [x12, x2] 66 ld1b {za0h.b[w14, 1]}, p2/z, [x1, x26] 72 ld1b {za0h.b[w12, 13]}, p2/z, [x22, x30] [all …]
|
| H A D | ld1q.s | 18 ld1q {za0h.q[w12, 0]}, p0/z, [x0, x0, lsl #4] 24 ld1q {za5h.q[w14, 0]}, p5/z, [x10, x21, lsl #4] 30 ld1q {za7h.q[w15, 0]}, p3/z, [x13, x8, lsl #4] 36 ld1q {za15h.q[w15, 0]}, p7/z, [sp] 42 ld1q {za5h.q[w12, 0]}, p3/z, [x17, x16, lsl #4] 48 ld1q {za1h.q[w12, 0]}, p1/z, [x1, x30, lsl #4] 54 ld1q {za8h.q[w14, 0]}, p5/z, [x19, x20, lsl #4] 60 ld1q {za0h.q[w12, 0]}, p6/z, [x12, x2, lsl #4] 66 ld1q {za1h.q[w14, 0]}, p2/z, [x1, x26, lsl #4] 72 ld1q {za13h.q[w12, 0]}, p2/z, [x22, x30, lsl #4] [all …]
|
| H A D | ld1h.s | 18 ld1h {za0h.h[w12, 0]}, p0/z, [x0, x0, lsl #1] 24 ld1h {za0h.h[w14, 5]}, p5/z, [x10, x21, lsl #1] 30 ld1h {za0h.h[w15, 7]}, p3/z, [x13, x8, lsl #1] 36 ld1h {za1h.h[w15, 7]}, p7/z, [sp] 42 ld1h {za0h.h[w12, 5]}, p3/z, [x17, x16, lsl #1] 48 ld1h {za0h.h[w12, 1]}, p1/z, [x1, x30, lsl #1] 54 ld1h {za1h.h[w14, 0]}, p5/z, [x19, x20, lsl #1] 60 ld1h {za0h.h[w12, 0]}, p6/z, [x12, x2, lsl #1] 66 ld1h {za0h.h[w14, 1]}, p2/z, [x1, x26, lsl #1] 72 ld1h {za1h.h[w12, 5]}, p2/z, [x22, x30, lsl #1] [all …]
|
| H A D | ld1w.s | 18 ld1w {za0h.s[w12, 0]}, p0/z, [x0, x0, lsl #2] 24 ld1w {za1h.s[w14, 1]}, p5/z, [x10, x21, lsl #2] 30 ld1w {za1h.s[w15, 3]}, p3/z, [x13, x8, lsl #2] 36 ld1w {za3h.s[w15, 3]}, p7/z, [sp] 42 ld1w {za1h.s[w12, 1]}, p3/z, [x17, x16, lsl #2] 48 ld1w {za0h.s[w12, 1]}, p1/z, [x1, x30, lsl #2] 54 ld1w {za2h.s[w14, 0]}, p5/z, [x19, x20, lsl #2] 60 ld1w {za0h.s[w12, 0]}, p6/z, [x12, x2, lsl #2] 66 ld1w {za0h.s[w14, 1]}, p2/z, [x1, x26, lsl #2] 72 ld1w {za3h.s[w12, 1]}, p2/z, [x22, x30, lsl #2] [all …]
|
| H A D | ld1d.s | 18 ld1d {za0h.d[w12, 0]}, p0/z, [x0, x0, lsl #3] 24 ld1d {za2h.d[w14, 1]}, p5/z, [x10, x21, lsl #3] 30 ld1d {za3h.d[w15, 1]}, p3/z, [x13, x8, lsl #3] 36 ld1d {za7h.d[w15, 1]}, p7/z, [sp] 42 ld1d {za2h.d[w12, 1]}, p3/z, [x17, x16, lsl #3] 48 ld1d {za0h.d[w12, 1]}, p1/z, [x1, x30, lsl #3] 54 ld1d {za4h.d[w14, 0]}, p5/z, [x19, x20, lsl #3] 60 ld1d {za0h.d[w12, 0]}, p6/z, [x12, x2, lsl #3] 66 ld1d {za0h.d[w14, 1]}, p2/z, [x1, x26, lsl #3] 72 ld1d {za6h.d[w12, 1]}, p2/z, [x22, x30, lsl #3] [all …]
|
| /llvm-project/clang/test/Headers/Inputs/include/ |
| H A D | cuda.h | 16 unsigned x, y, z; member 17 __host__ __device__ dim3(unsigned x, unsigned y = 1, unsigned z = 1) : x(x), y(y), z(z) {} in x() 33 char x, y, z, w; member 34 …__host__ __device__ char4(char x = 0, char y = 0, char z = 0, char w = 0) : x(x), y(y), z(z), w(w)… in x() 42 unsigned char x, y, z, w; member 43 …signed char x = 0, unsigned char y = 0, unsigned char z = 0, unsigned char w = 0) : x(x), y(y), z(… in x() 51 short x, y, z, w; member 52 …__host__ __device__ short4(short x = 0, short y = 0, short z = 0, short w = 0) : x(x), y(y), z(z),… in x() 60 unsigned short x, y, z, w; member 61 …ed short x = 0, unsigned short y = 0, unsigned short z = 0, unsigned short w = 0) : x(x), y(y), z(… in x() [all …]
|
| /llvm-project/lld/test/ELF/ |
| H A D | icf-many-sections.s | 7 .macro gen_sections4 z argument 8 .section .a\z,"ax" 9 .section .b\z,"ax" 10 .section .c\z,"ax" 11 .section .d\z,"ax" 14 .macro gen_sections8 z argument 15 gen_sections4 a\z 16 gen_sections4 b\z 19 .macro gen_sections16 z argument 20 gen_sections8 a\z [all …]
|
| /llvm-project/flang/test/Evaluate/ |
| H A D | fold-transfer.f90 | 5 logical, parameter :: test_r2i_s_1 = transfer(1., 0) == int(z'3f800000') 6 logical, parameter :: test_r2i_v_1 = all(transfer(1., [integer::]) == [int(z'3f800000')]) 7 …eter :: test_r2i_v_2 = all(transfer([1., 2.], [integer::]) == [int(z'3f800000'), int(z'40000000')]) 8 …logical, parameter :: test_r2i_vs_1 = all(transfer([1., 2.], [integer::], 1) == [int(z'3f800000')]) 13 logical, parameter :: test_t2i_s_1 = transfer(t(1.), 0) == int(z'3f800000') 14 logical, parameter :: test_t2i_v_1 = all(transfer(t(1.), [integer::]) == [int(z'3f800000')]) 15 …: test_t2i_v_2 = all(transfer([t(1.), t(2.)], [integer::]) == [int(z'3f800000'), int(z'40000000')]) 16 …logical, parameter :: test_t2i_vs_1 = all(transfer([t(1.), t(2.)], [integer::], 1) == [int(z'3f800… 27 …logical, parameter :: test_nan = transfer(int(z'7ff8000000000000', 8), 0._8) /= transfer(int(z'7ff… 30 logical, parameter :: test_c2i_s_1 = jc1 == int(z'61626364') .or. jc1 == int(z'64636261') [all …]
|
| /llvm-project/clang/test/Sema/ |
| H A D | bool-compare.c | 4 void f(int x, int y, int z) { in f() argument 72 if ((a<y) > z) {} // no warning in f() 78 if ((a<y) == z) {} // no warning in f() 84 if ((a<y) != z) {} // no warning in f() 87 if ((a<y) == z) {} // no warning in f() 88 …if (a>y<z) {} // expected-warning {{comparisons like 'X<=Y<=Z' don't have their mathematical … in f() 89 if ((a<y) > z) {} // no warning in f() 90 if((a<y)>(z<y)) {} // no warning in f() 91 if((a<y)==(z<y)){} // no warning in f() 92 if((a<y)!=(z<y)){} // no warning in f() [all …]
|
| /llvm-project/llvm/test/MC/AArch64/SVE/ |
| H A D | ld1sh-diagnostics.s | 6 ld1sh z23.h, p0/z, [x13, #1, MUL VL] 11 ld1sh z29.h, p0/z, [x3, #1, MUL VL] 20 ld1sh z30.s, p6/z, [x25, #-9, MUL VL] 25 ld1sh z29.s, p5/z, [x15, #8, MUL VL] 30 ld1sh z28.d, p2/z, [x28, #-9, MUL VL] 35 ld1sh z27.d, p1/z, [x26, #8, MUL VL] 44 ld1sh z12.s, p8/z, [x13, #1, MUL VL] 49 ld1sh z4.d, p8/z, [x11, #1, MUL VL] 58 ld1sh { }, p0/z, [x1, #1, MUL VL] 63 ld1sh { z1.s, z2.s }, p0/z, [x1, #1, MUL VL] [all …]
|
| H A D | ld1h-diagnostics.s | 6 ld1h z21.h, p4/z, [x17, #-9, MUL VL] 11 ld1h z10.h, p5/z, [x16, #8, MUL VL] 16 ld1h z30.s, p6/z, [x25, #-9, MUL VL] 21 ld1h z29.s, p5/z, [x15, #8, MUL VL] 26 ld1h z28.d, p2/z, [x28, #-9, MUL VL] 31 ld1h z27.d, p1/z, [x26, #8, MUL VL] 40 ld1h z9.h, p8/z, [x25, #1, MUL VL] 45 ld1h z12.s, p8/z, [x13, #1, MUL VL] 50 ld1h z4.d, p8/z, [x11, #1, MUL VL] 59 ld1h { }, p0/z, [x1, #1, MUL VL] [all …]
|
| H A D | ld1w-diagnostics.s | 6 ld1w z30.s, p6/z, [x25, #-9, MUL VL] 11 ld1w z29.s, p5/z, [x15, #8, MUL VL] 16 ld1w z28.d, p2/z, [x28, #-9, MUL VL] 21 ld1w z27.d, p1/z, [x26, #8, MUL VL] 30 ld1w z12.s, p8/z, [x13, #1, MUL VL] 35 ld1w z4.d, p8/z, [x11, #1, MUL VL] 44 ld1w { }, p0/z, [x1, #1, MUL VL] 49 ld1w { z1.s, z2.s }, p0/z, [x1, #1, MUL VL] 54 ld1w { v0.2d }, p0/z, [x1, #1, MUL VL] 63 ld1w z0.s, p0/z, [x0, x0] [all …]
|
| H A D | ld1b-diagnostics.s | 6 ld1b z23.b, p0/z, [x13, #-9, MUL VL] 11 ld1b z29.b, p0/z, [x3, #8, MUL VL] 16 ld1b z21.h, p4/z, [x17, #-9, MUL VL] 21 ld1b z10.h, p5/z, [x16, #8, MUL VL] 26 ld1b z30.s, p6/z, [x25, #-9, MUL VL] 31 ld1b z29.s, p5/z, [x15, #8, MUL VL] 36 ld1b z28.d, p2/z, [x28, #-9, MUL VL] 41 ld1b z27.d, p1/z, [x26, #8, MUL VL] 50 ld1b z27.b, p8/z, [x29, #1, MUL VL] 55 ld1b z9.h, p8/z, [x25, #1, MUL VL] [all …]
|
| H A D | ld1sb-diagnostics.s | 6 ld1sb z23.b, p0/z, [x13, #1, MUL VL] 11 ld1sb z29.b, p0/z, [x3, #1, MUL VL] 20 ld1sb z21.h, p4/z, [x17, #-9, MUL VL] 25 ld1sb z10.h, p5/z, [x16, #8, MUL VL] 30 ld1sb z30.s, p6/z, [x25, #-9, MUL VL] 35 ld1sb z29.s, p5/z, [x15, #8, MUL VL] 40 ld1sb z28.d, p2/z, [x28, #-9, MUL VL] 45 ld1sb z27.d, p1/z, [x26, #8, MUL VL] 54 ld1sb z9.h, p8/z, [x25, #1, MUL VL] 59 ld1sb z12.s, p8/z, [x13, #1, MUL VL] [all …]
|
| H A D | matrix-multiply-fp64.s | 24 ld1rob { z0.b }, p1/z, [x2, #224] 30 ld1roh { z0.h }, p1/z, [x2, #224] 36 ld1row { z0.s }, p1/z, [x2, #224] 42 ld1rod { z0.d }, p1/z, [x2, #224] 50 ld1rob { z0.b }, p1/z, [x2, #-256] 56 ld1roh { z0.h }, p1/z, [x2, #-256] 62 ld1row { z0.s }, p1/z, [x2, #-256] 68 ld1rod { z0.d }, p1/z, [x2, #-256] 76 ld1rob { z0.b }, p1/z, [x2] 82 ld1roh { z0.h }, p1/z, [x2] [all …]
|
| /llvm-project/clang/test/SemaCXX/ |
| H A D | bool-compare.cpp | 4 void f(int x, int y, int z) { in f() argument 85 if ((a<y) > z) {} // no warning in f() 91 if ((a<y) == z) {} // no warning in f() 97 if ((a<y) != z) {} // no warning in f() 100 if ((a<y) == z) {} // no warning in f() 101 …if (a>y<z) {} // expected-warning {{comparisons like 'X<=Y<=Z' don't have their mathematical … in f() 102 if ((a<y) > z) {} // no warning in f() 103 if((a<y)>(z<y)) {} // no warning in f() 104 if((a<y)==(z<y)){} // no warning in f() 105 if((a<y)!=(z<y)){} // no warning in f() [all …]
|
| /llvm-project/libcxx/test/std/algorithms/alg.sorting/alg.clamp/ |
| H A D | clamp.pass.cpp | 46 int z = 0; in main() local 47 test(x, y, z, x); in main() 48 test(y, x, z, y); in main() 53 int z = 2; in main() local 54 test(x, y, z, y); in main() 55 test(y, x, z, y); in main() 60 int z = 1; in main() local 61 test(x, y, z, x); in main() 62 test(y, x, z, x); in main() 69 Tag z{0, "Zero-z"}; in main() local [all …]
|
| H A D | clamp.comp.pass.cpp | 48 int z = 0; in main() local 49 test(x, y, z, std::greater<int>(), x); in main() 50 test(y, x, z, std::greater<int>(), y); in main() 55 int z = -1; in main() local 56 test(x, y, z, std::greater<int>(), x); in main() 57 test(y, x, z, std::greater<int>(), x); in main() 62 int z = 0; in main() local 63 test(x, y, z, std::greater<int>(), y); in main() 64 test(y, x, z, std::greater<int>(), y); in main() 71 Tag z{0, "Zero-z"}; in main() local [all …]
|
| /llvm-project/llvm/test/MC/X86/ |
| H A D | AVX512F_512-64.s | 21 vaddpd 4096(%rdx,%rax,4), %zmm19, %zmm19 {%k2} {z} 25 vaddpd -4096(%rdx,%rax,4), %zmm19, %zmm19 {%k2} {z} 37 vaddpd 4096(%rdx,%rax), %zmm19, %zmm19 {%k2} {z} 49 vaddpd 4096(%rdx), %zmm19, %zmm19 {%k2} {z} 61 vaddpd 485498096{1to8}, %zmm19, %zmm19 {%k2} {z} 73 vaddpd 485498096, %zmm19, %zmm19 {%k2} {z} 85 vaddpd 512(%rdx){1to8}, %zmm19, %zmm19 {%k2} {z} 97 vaddpd 512(%rdx,%rax){1to8}, %zmm19, %zmm19 {%k2} {z} 117 vaddpd 512(%rdx,%rax,4){1to8}, %zmm19, %zmm19 {%k2} {z} 121 vaddpd -512(%rdx,%rax,4){1to8}, %zmm19, %zmm19 {%k2} {z} [all …]
|
| /llvm-project/clang/test/Analysis/ |
| H A D | svalbuilder-simplify-compound-svals.cpp | 14 void test_left_tree_constrained(int x, int y, int z) { in test_left_tree_constrained() argument 15 if (x + y + z != 0) in test_left_tree_constrained() 19 clang_analyzer_eval(x + y + z == 0); // expected-warning{{TRUE}} in test_left_tree_constrained() 21 clang_analyzer_eval(z == 0); // expected-warning{{TRUE}} in test_left_tree_constrained() 22 x = y = z = 1; in test_left_tree_constrained() 26 void test_right_tree_constrained(int x, int y, int z) { in test_right_tree_constrained() argument 27 if (x + y * z != 0) in test_right_tree_constrained() 29 if (y * z != 0) in test_right_tree_constrained() 31 clang_analyzer_eval(x + y * z == 0); // expected-warning{{TRUE}} in test_right_tree_constrained() 32 clang_analyzer_eval(y * z == 0); // expected-warning{{TRUE}} in test_right_tree_constrained() [all …]
|