Searched refs:NTCopy (Results 1 – 2 of 2) sorted by relevance
| /llvm-project-15.0.7/llvm/test/CodeGen/AArch64/GlobalISel/ |
| H A D | debug-cpp.ll | 4 ; struct NTCopy { 5 ; NTCopy(); 6 ; NTCopy(const NTCopy &); 9 ; int foo(NTCopy o) { 18 %struct.NTCopy = type { i32 } 23 define dso_local i32 @_Z3foo6NTCopy(%struct.NTCopy* %o) #0 !dbg !7 { 25 …call void @llvm.dbg.declare(metadata %struct.NTCopy* %o, metadata !23, metadata !DIExpression()), … 26 %x = getelementptr inbounds %struct.NTCopy, %struct.NTCopy* %o, i32 0, i32 0, !dbg !25 52 !11 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "NTCopy", file: !1, line: 1, size… 55 !14 = !DISubprogram(name: "NTCopy", scope: !11, file: !1, line: 2, type: !15, isLocal: false, isDef… [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/ |
| H A D | copy.pass.cpp | 48 struct NTCopy { struct 49 constexpr NTCopy(int v) : value(v) {} in NTCopy() function 50 NTCopy(const NTCopy &that) : value(that.value) {} in NTCopy() function 51 NTCopy(NTCopy &&) = delete; 55 static_assert(!std::is_trivially_copy_constructible<NTCopy>::value, ""); argument 56 static_assert(std::is_copy_constructible<NTCopy>::value, ""); 129 using V = std::variant<int, NTCopy>; in test_copy_ctor_sfinae()
|