Home
last modified time | relevance | path

Searched refs:two_ints (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/clang/test/CodeGenCXX/
Dbuiltin-bit-cast.cpp13 struct two_ints { struct
18 unsigned long test_aggregate_to_scalar(two_ints &ti) { in test_aggregate_to_scalar() argument
33 two_floats test_aggregate_record(two_ints& ti) { in test_aggregate_record()
59 two_ints test_scalar_to_aggregate(unsigned long ul) { in test_scalar_to_aggregate()
61 return __builtin_bit_cast(two_ints, ul); in test_scalar_to_aggregate()
99 two_ints test_rvalue_aggregate() { in test_rvalue_aggregate()
101 return __builtin_bit_cast(two_ints, 42ul); in test_rvalue_aggregate()
Dvector-conditional.cpp16 TwoInts two_ints; variable
38 two_ints ? two_ints : two_ints; in TwoVectorOps()
45 two_ints ? two_floats : two_floats; in TwoVectorOps()
/external/llvm-project/llvm/test/CodeGen/ARM/
Dcmse-errors.ll3 %struct.two_ints = type { i32, i32 }
6 define void @test1(%struct.two_ints* noalias nocapture sret(%struct.two_ints) align 4 %agg.result) …
8 %0 = bitcast %struct.two_ints* %agg.result to i64*
28 define void @test4(void (%struct.two_ints*)* nocapture %p) {
30 %r = alloca %struct.two_ints, align 4
31 %0 = bitcast %struct.two_ints* %r to i8*
32 call void %p(%struct.two_ints* nonnull sret(%struct.two_ints) align 4 %r) "cmse_nonsecure_call"
/external/llvm-project/clang/test/SemaCXX/
Dvector-conditional.cpp18 TwoInts two_ints; variable
54 …(void)(four_ints ?: two_ints); // expected-error {{vector operands to the vector… in Operands()
103 …(void)(two_ints ? two_ints : us); // expected-error {{cannot convert between scalar type 'u… in Operands()
152 (void)(two_ints ? 1 : C); in dependent_operand()
153 (void)(two_ints ? C : 1); in dependent_operand()
154 (void)(two_ints ? C : C); in dependent_operand()
164 dependent_cond(two_ints); in Templates()