Home
last modified time | relevance | path

Searched full:default (Results 1 – 25 of 8396) sorted by relevance

12345678910>>...336

/llvm-project/llvm/test/CodeGen/X86/
H A Duse-cr-result-of-dom-icmp-st.ll2 …riple=x86_64-unknown-unknown -O3 -verify-machineinstrs < %s | FileCheck %s --check-prefixes=DEFAULT
19 ; DEFAULT-LABEL: ll_a_op_b__2:
20 ; DEFAULT: # %bb.0: # %entry
21 ; DEFAULT-NEXT: movq %rsi, %rcx
22 ; DEFAULT-NEXT: movq %rdi, %rax
23 ; DEFAULT-NEXT: shlq %cl, %rax
24 ; DEFAULT-NEXT: cmpq $-2, %rax
25 ; DEFAULT-NEXT: jle .LBB0_1
26 ; DEFAULT-NEXT: # %bb.2: # %return
27 ; DEFAULT-NEXT: movq %rcx, %rax
[all …]
H A Dinnermost-loop-alignment.ll2 ; RUN: llc < %s -mtriple=i686-pc-linux-gnu | FileCheck %s -check-prefix=DEFAULT
9 ; DEFAULT-LABEL: test:
10 ; DEFAULT: # %bb.0: # %entry
11 ; DEFAULT-NEXT: pushl %ebp
12 ; DEFAULT-NEXT: .cfi_def_cfa_offset 8
13 ; DEFAULT-NEXT: pushl %ebx
14 ; DEFAULT-NEXT: .cfi_def_cfa_offset 12
15 ; DEFAULT-NEXT: pushl %edi
16 ; DEFAULT-NEXT: .cfi_def_cfa_offset 16
17 ; DEFAULT
[all...]
/llvm-project/llvm/test/CodeGen/PowerPC/
H A Daix-small-local-dynamic-tls-types.ll16 ; RUN: | FileCheck %s --check-prefix=DEFAULT-LOCAL-DYNAMIC-SMALLCM64
20 ; RUN: --check-prefix=DEFAULT-LOCAL-DYNAMIC-LARGECM64
23 ; RUN: | FileCheck %s --check-prefix=DEFAULT-LOCAL-DYNAMIC-SMALLCM64-O0
27 ; RUN: --check-prefix=DEFAULT-LOCAL-DYNAMIC-LARGECM64-O0
103 ; DEFAULT-LOCAL-DYNAMIC-SMALLCM64-LABEL: AddrTest1:
104 ; DEFAULT-LOCAL-DYNAMIC-SMALLCM64: # %bb.0: # %entry
105 ; DEFAULT-LOCAL-DYNAMIC-SMALLCM64-NEXT: mflr r0
106 ; DEFAULT-LOCAL-DYNAMIC-SMALLCM64-NEXT: stdu r1, -48(r1)
107 ; DEFAULT-LOCAL-DYNAMIC-SMALLCM64-NEXT: ld r3, L..C0(r2) # target-flags(ppc-tlsldm) @"_$TLSML"
108 ; DEFAULT-LOCAL-DYNAMIC-SMALLCM64-NEXT: std r0, 64(r1)
[all …]
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/openmp/
H A Duse-default-none.cpp1 // RUN: %check_clang_tidy %s openmp-use-default-none %t -- -- -fopenmp=libomp -fopenmp-version=51
2 // RUN: %check_clang_tidy -std=c11 %s openmp-use-default-none %t -- -- -x c -fopenmp=libomp -fopenm…
8 // 'for' directive can not have 'default' clause, no diagnostics.
21 // 'parallel' directive can have 'default' clause, but said clause is not
26 …arning: OpenMP directive 'parallel' does not specify 'default' clause, consider specifying 'defaul… in p0_0()
29 // 'parallel' directive can have 'default' clause, and said clause specified,
32 #pragma omp parallel default(none) in p0_1()
36 // 'parallel' directive can have 'default' clause, and said clause specified,
39 #pragma omp parallel default(shared) in p0_2()
41 …:1: warning: OpenMP directive 'parallel' specifies 'default(shared)' clause, consider using 'defau… in p0_2()
[all …]
/llvm-project/clang/test/OpenMP/
H A Dtarget_parallel_generic_loop_codegen-1.cpp41 // RUN: %clang_cc1 -verify -fopenmp -x c++ -triple powerpc64le-unknown-unknown -fopenmp-targets=powerpc64le-ibm-linux-gnu -emit-llvm %s -o - | FileCheck %s --check-prefix OMP-DEFAULT
43 // RUN: %clang_cc1 -fopenmp -x c++ -triple powerpc64le-unknown-unknown -fopenmp-targets=powerpc64le-ibm-linux-gnu -std=c++11 -include-pch %t -verify %s -emit-llvm -o - | FileCheck %s --check-prefix OMP-DEFAULT
44 // RUN: %clang_cc1 -verify -fopenmp -x c++ -triple i386-unknown-unknown -fopenmp-targets=i386-pc-linux-gnu -emit-llvm %s -o - | FileCheck %s --check-prefix OMP-DEfAULT
46 // RUN: %clang_cc1 -fopenmp -x c++ -triple i386-unknown-unknown -fopenmp-targets=i386-pc-linux-gnu -std=c++11 -include-pch %t -verify %s -emit-llvm -o - | FileCheck %s --check-prefix OMP-DEFAULT
76 // RUN: %clang_cc1 -verify -fopenmp -x c++ -triple powerpc64le-unknown-unknown -emit-llvm %s -o - | FileCheck %s -check-prefix=CHECK-NTARGET-OMP-DEFAULT
94 // We have 4 initializers, one for the 500 priority, another one for 501, or more for the default priority, and the last one for the offloading registration function.
241 // We have 6 initializers with default priority
3762 // OMP-DEFAULT-LABEL: define {{[^@]+}}@__cxx_global_var_init
3763 // OMP-DEFAULT-SAME: () #[[ATTR0:[0-9]+]] {
3764 // OMP-DEFAULT
[all...]
/llvm-project/clang/test/CXX/class/class.compare/class.compare.default/
H A Dp2.cpp7 …const A1&) const = default; // expected-warning {{implicitly deleted}} expected-note 2{{deleted he…
8 …const A1&) const = default; // expected-warning {{implicitly deleted}} expected-note 5{{deleted he…
15 bool operator!=(const A2&) const = default;
18 bool operator<(const A2&) const = default;
19 bool operator<=(const A2&) const = default;
20 bool operator>(const A2&) const = default;
21 bool operator>=(const A2&) const = default;
45 …ool operator==(const A3 &) const = default; // expected-warning {{implicitly deleted}} expected-no…
46 …ool operator<(const A3 &) const = default; // expected-warning {{implicitly deleted}} expected-no…
56 …bool operator==(const B1&) const = default; // expected-warning {{implicitly deleted}} expected-no…
[all …]
H A Dp3.cpp1 // This test is for the [class.compare.default]p3 added by P2002R0
19 friend bool operator==(const A&, const A&) = default;
20 friend bool operator!=(const A&, const A&) = default;
22 friend std::strong_ordering operator<=>(const A&, const A&) = default;
23 friend bool operator<(const A&, const A&) = default;
24 friend bool operator<=(const A&, const A&) = default;
25 friend bool operator>(const A&, const A&) = default;
26 friend bool operator>=(const A&, const A&) = default;
42 friend bool operator>=(const ReversedA&, const ReversedA&) = default;
43 friend bool operator>(const ReversedA&, const ReversedA&) = default;
[all …]
/llvm-project/llvm/test/CodeGen/AMDGPU/
H A Dsgpr-regalloc-flags.ll3 ; RUN: llc -verify-machineinstrs=0 -mtriple=amdgcn-amd-amdhsa -debug-pass=Structure -o /dev/null %s 2>&1 | FileCheck -check-prefix=DEFAULT %s
4 ; RUN: llc -verify-machineinstrs=0 -sgpr-regalloc=greedy -wwm-regalloc=greedy -vgpr-regalloc=greedy -mtriple=amdgcn-amd-amdhsa -debug-pass=Structure -o /dev/null %s 2>&1 | FileCheck -check-prefix=DEFAULT %s
8 ; RUN: llc -verify-machineinstrs=0 -wwm-regalloc=basic -vgpr-regalloc=basic -mtriple=amdgcn-amd-amdhsa -debug-pass=Structure -o /dev/null %s 2>&1 | FileCheck -check-prefix=DEFAULT-BASIC %s
9 ; RUN: llc -verify-machineinstrs=0 -sgpr-regalloc=basic -mtriple=amdgcn-amd-amdhsa -debug-pass=Structure -o /dev/null %s 2>&1 | FileCheck -check-prefix=BASIC-DEFAULT %s
18 ; DEFAULT: Greedy Register Allocator
19 ; DEFAULT-NEXT: Virtual Register Rewriter
20 ; DEFAULT-NEXT: Stack Slot Coloring
21 ; DEFAULT-NEXT: SI lower SGPR spill instructions
22 ; DEFAULT-NEXT: Virtual Register Map
23 ; DEFAULT
[all...]
/llvm-project/llvm/test/Transforms/LoopVectorize/AArch64/
H A Dstore-costs-sve.ll2 ; RUN: opt -p loop-vectorize -S %s | FileCheck --check-prefixes=DEFAULT %s
9 ; DEFAULT-LABEL: define void @cost_store_i8(
10 ; DEFAULT-SAME: ptr [[DST:%.*]]) #[[ATTR0:[0-9]+]] {
11 ; DEFAULT-NEXT: iter.check:
12 ; DEFAULT-NEXT: [[TMP0:%.*]] = call i64 @llvm.vscale.i64()
13 ; DEFAULT-NEXT: [[TMP1:%.*]] = mul i64 [[TMP0]], 8
14 ; DEFAULT-NEXT: [[MIN_ITERS_CHECK:%.*]] = icmp ult i64 101, [[TMP1]]
15 ; DEFAULT-NEXT: br i1 [[MIN_ITERS_CHECK]], label [[VEC_EPILOG_SCALAR_PH:%.*]], label [[VECTOR_MAIN_LOOP_ITER_CHECK:%.*]]
16 ; DEFAULT: vector.main.loop.iter.check:
17 ; DEFAULT
[all...]
H A Dconditional-branches-cost.ll2 ; RUN: opt -p loop-vectorize -S %s | FileCheck --check-prefix=DEFAULT %s
9 ; DEFAULT-LABEL: define void @invar_cond_gep_store(
10 ; DEFAULT-SAME: ptr [[DST:%.*]], i32 [[TMP0:%.*]]) {
11 ; DEFAULT-NEXT: entry:
12 ; DEFAULT-NEXT: br label [[LOOP_HEADER:%.*]]
13 ; DEFAULT: loop.header:
14 ; DEFAULT-NEXT: [[IV:%.*]] = phi i64 [ 1, [[ENTRY:%.*]] ], [ [[IV_NEXT:%.*]], [[LOOP_LATCH:%.*]] ]
15 ; DEFAULT-NEXT: [[IV_NEXT]] = add i64 [[IV]], 1
16 ; DEFAULT-NEXT: [[CMP9:%.*]] = icmp eq i32 [[TMP0]], 0
17 ; DEFAULT
[all...]
H A Dinduction-costs-sve.ll2 ; RUN: opt -p loop-vectorize -S %s | FileCheck --check-prefixes=DEFAULT %s
9 ; DEFAULT-LABEL: define void @iv_casts(
10 ; DEFAULT-SAME: ptr [[DST:%.*]], ptr [[SRC:%.*]], i32 [[X:%.*]], i64 [[N:%.*]]) #[[ATTR0:[0-9]+]] {
11 ; DEFAULT-NEXT: entry:
12 ; DEFAULT-NEXT: [[SRC2:%.*]] = ptrtoint ptr [[SRC]] to i64
13 ; DEFAULT-NEXT: [[DST1:%.*]] = ptrtoint ptr [[DST]] to i64
14 ; DEFAULT-NEXT: [[TMP0:%.*]] = add i64 [[N]], 1
15 ; DEFAULT-NEXT: [[TMP1:%.*]] = call i64 @llvm.vscale.i64()
16 ; DEFAULT-NEXT: [[TMP2:%.*]] = mul i64 [[TMP1]], 16
17 ; DEFAULT
[all...]
/llvm-project/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
H A Dp2.cpp6 …constexpr S1() = default; // expected-error {{defaulted definition of default constructor cannot b…
7 constexpr S1(const S1&) = default;
8 constexpr S1(S1&&) = default;
9 …constexpr S1 &operator=(const S1&) const = default; // expected-error {{explicitly-defaulted copy …
10 …constexpr S1 &operator=(S1&&) const = default; // expected-error {{explicitly-defaulted move assig…
11 constexpr ~S1() = default; // expected-error {{destructor cannot be declared constexpr}}
20 constexpr S2() = default;
21 …constexpr S2(const S2&) = default; // expected-error {{defaulted definition of copy constructor ca…
22 …constexpr S2(S2&&) = default; // expected-error {{defaulted definition of move constructor cannot …
30 S3() = default;
[all …]
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/performance/
H A Dnoexcept-move-constructor.cpp65 D(D &&) noexcept(kFalse) = default;
67 D& operator=(D &&) noexcept(kFalse) = default;
83 F(F &&) noexcept(kFalse) = default;
85 F& operator=(F &&) noexcept(kFalse) = default;
90 G(G &&) = default;
92 // CHECK-FIXES: G(G &&) noexcept = default;
93 G& operator=(G &&) = default;
95 // CHECK-FIXES: G& operator=(G &&) noexcept = default;
133 K(K &&) = default;
135 // CHECK-FIXES: K(K &&) noexcept = default;
[all …]
/llvm-project/lld/test/COFF/
H A Dimplib-name.test6 # RUN: llvm-ar t %T/library.lib | FileCheck %s -check-prefix CHECK-DEFAULT-DLL-EXT
9 # RUN: llvm-ar t %T/library.lib | FileCheck %s -check-prefix CHECK-DEFAULT-DLL-EXT
11 CHECK-DEFAULT-DLL-EXT: library.dll
12 CHECK-DEFAULT-DLL-EXT: library.dll
13 CHECK-DEFAULT-DLL-EXT: library.dll
14 CHECK-DEFAULT-DLL-EXT: library.dll
17 # RUN: llvm-ar t %T/library.lib | FileCheck %s -check-prefix CHECK-DEFAULT-EXE-EXT
19 CHECK-DEFAULT-EXE-EXT: library.exe
20 CHECK-DEFAULT-EXE-EXT: library.exe
21 CHECK-DEFAULT-EXE-EXT: library.exe
[all …]
/llvm-project/llvm/test/CodeGen/AArch64/
H A Dzero-call-used-regs.ll2 ; RUN: llc < %s -verify-machineinstrs -mtriple=aarch64-unknown-unknown | FileCheck %s --check-prefixes=CHECK,DEFAULT
140 ; DEFAULT-LABEL: all_arg:
141 ; DEFAULT: // %bb.0: // %entry
142 ; DEFAULT-NEXT: mul w8, w1, w0
143 ; DEFAULT-NEXT: mov x1, #0 // =0x0
144 ; DEFAULT-NEXT: mov x3, #0 // =0x0
145 ; DEFAULT-NEXT: mov x4, #0 // =0x0
146 ; DEFAULT-NEXT: mov x5, #0 // =0x0
147 ; DEFAULT-NEXT: mov x6, #0 // =0x0
148 ; DEFAULT
[all...]
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/modernize/
H A Duse-equals-default.cpp1 // RUN: %check_clang_tidy %s modernize-use-equals-default %t -- -- -fno-delayed-template-parsing -f…
11 …GES: :[[@LINE-1]]:5: warning: use '= default' to define a trivial default constructor [modernize-u…
12 // CHECK-FIXES: OL::OL() = default;
14 …MESSAGES: :[[@LINE-1]]:5: warning: use '= default' to define a trivial destructor [modernize-use-e…
15 // CHECK-FIXES: OL::~OL() = default;
21 // CHECK-MESSAGES: :[[@LINE-1]]:3: warning: use '= default'
22 // CHECK-FIXES: IL() = default ; // Note embedded tab on this line
24 // CHECK-MESSAGES: :[[@LINE-1]]:3: warning: use '= default'
25 // CHECK-FIXES: ~IL() = default;
95 // Default member initializer
[all …]
/llvm-project/lld/test/ELF/
H A Darm-cmse-implib.s54 // CHECK1-NEXT: 0: 00000000 0 NOTYPE LOCAL DEFAULT UND
55 // CHECK1-NEXT: 1: 00020000 0 NOTYPE LOCAL DEFAULT 2 $t
56 // CHECK1-NEXT: 2: 00008000 0 NOTYPE LOCAL DEFAULT 1 $t
57 // CHECK1-NEXT: 3: 00008004 0 NOTYPE LOCAL DEFAULT 1 $t
58 // CHECK1-NEXT: 4: 00008001 2 FUNC GLOBAL DEFAULT 1 secure_entry
59 // CHECK1-NEXT: 5: 00020001 8 FUNC GLOBAL DEFAULT 2 foo
60 // CHECK1-NEXT: 6: 00008005 2 FUNC GLOBAL DEFAULT 1 __acle_se_foo
61 // CHECK1-NEXT: 7: 00020009 8 FUNC WEAK DEFAULT 2 bar
62 // CHECK1-NEXT: 8: 00008009 2 FUNC GLOBAL DEFAULT 1 __acle_se_bar
63 // CHECK1-NEXT: 9: 0000800d 8 FUNC WEAK DEFAULT
[all...]
/llvm-project/llvm/test/Transforms/LoopDistribute/
H A Dsymbolic-stride.ll3 ; RUN: FileCheck %s --check-prefix=DEFAULT
18 ; DEFAULT-LABEL: @f(
19 ; DEFAULT-NEXT: entry:
20 ; DEFAULT-NEXT: br label [[FOR_BODY_LVER_CHECK:%.*]]
21 ; DEFAULT: for.body.lver.check:
22 ; DEFAULT-NEXT: [[IDENT_CHECK:%.*]] = icmp ne i64 [[STRIDE:%.*]], 1
23 ; DEFAULT-NEXT: br i1 [[IDENT_CHECK]], label [[FOR_BODY_PH_LVER_ORIG:%.*]], label [[FOR_BODY_PH_…
24 ; DEFAULT: for.body.ph.lver.orig:
25 ; DEFAULT-NEXT: br label [[FOR_BODY_LVER_ORIG:%.*]]
26 ; DEFAULT: for.body.lver.orig:
[all …]
/llvm-project/clang/lib/Basic/
H A DCodeGenOptions.cpp15 #define CODEGENOPT(Name, Bits, Default) Name = Default; in CodeGenOptions() argument
16 #define ENUM_CODEGENOPT(Name, Type, Bits, Default) set##Name(Default); in CodeGenOptions() argument
24 #define DEBUGOPT(Name, Bits, Default) in resetNonModularOptions()
25 #define VALUE_DEBUGOPT(Name, Bits, Default) in resetNonModularOptions() argument
26 #define ENUM_DEBUGOPT(Name, Type, Bits, Default) in resetNonModularOptions() argument
27 #define CODEGENOPT(Name, Bits, Default) Name = Default; in resetNonModularOptions() argument
28 #define ENUM_CODEGENOPT(Name, Type, Bits, Default) se in resetNonModularOptions() argument
29 ENUM_CODEGENOPT(Name,Type,Bits,Default) resetNonModularOptions() argument
31 AFFECTING_VALUE_CODEGENOPT(Name,Bits,Default) resetNonModularOptions() argument
36 DEBUGOPT(Name,Bits,Default) resetNonModularOptions() argument
37 VALUE_DEBUGOPT(Name,Bits,Default) resetNonModularOptions() argument
38 ENUM_DEBUGOPT(Name,Type,Bits,Default) resetNonModularOptions() argument
39 BENIGN_DEBUGOPT(Name,Bits,Default) resetNonModularOptions() argument
40 BENIGN_VALUE_DEBUGOPT(Name,Bits,Default) resetNonModularOptions() argument
41 BENIGN_ENUM_DEBUGOPT(Name,Type,Bits,Default) resetNonModularOptions() argument
47 DEBUGOPT(Name,Bits,Default) resetNonModularOptions() argument
48 VALUE_DEBUGOPT(Name,Bits,Default) resetNonModularOptions() argument
49 ENUM_DEBUGOPT(Name,Type,Bits,Default) resetNonModularOptions() argument
50 BENIGN_DEBUGOPT(Name,Bits,Default) resetNonModularOptions() argument
51 BENIGN_VALUE_DEBUGOPT(Name,Bits,Default) resetNonModularOptions() argument
52 BENIGN_ENUM_DEBUGOPT(Name,Type,Bits,Default) resetNonModularOptions() argument
[all...]
/llvm-project/llvm/test/MC/ELF/
H A Dtype.s5 # CHECK-NEXT: 0: 0000000000000000 0 NOTYPE LOCAL DEFAULT UND
6 # CHECK-NEXT: 1: 0000000000000000 0 FUNC GLOBAL DEFAULT 2 foo
7 # CHECK-NEXT: 2: 0000000000000000 0 OBJECT GLOBAL DEFAULT 2 bar
8 # CHECK-NEXT: 3: 0000000000000000 0 OBJECT UNIQUE DEFAULT 2 zed
9 # CHECK-NEXT: 4: 0000000000000000 0 OBJECT GLOBAL DEFAULT 2 obj
10 # CHECK-NEXT: 5: 0000000000000000 0 FUNC GLOBAL DEFAULT 2 func
11 # CHECK-NEXT: 6: 0000000000000000 0 IFUNC GLOBAL DEFAULT 2 ifunc
12 # CHECK-NEXT: 7: 0000000000000000 0 TLS GLOBAL DEFAULT 2 tls
13 # CHECK-NEXT: 8: 0000000000000000 0 TLS GLOBAL DEFAULT 2 tls_quoted
14 # CHECK-NEXT: 9: 0000000000000000 0 TLS GLOBAL DEFAULT 2 tls_upper_case
[all …]
/llvm-project/clang/test/CXX/special/class.ctor/
H A Dp5-0x.cpp4 struct DefaultedDefCtor2 { DefaultedDefCtor2() = default; };
6 struct DefaultedDefCtorUninitialized2 { int x; DefaultedDefCtorUninitialized2() = default; };
8 class PrivateDefCtor { PrivateDefCtor() = default; public: PrivateDefCtor(int); };
10 class PrivateDtor { ~PrivateDtor() = default; };
12 Friend() = default; ~Friend() = default;
22 // A defaulted default constructor for a class X is defined as deleted if:
25 // default constructor,
26 …}; // expected-note {{default constructor of 'Deleted1a' is implicitly deleted because variant fie…
27 Deleted1a d1a; // expected-error {{implicitly-deleted default constructor}}
36 Deleted2a() = default; // expected-note 4{{implicitly deleted here}}
[all …]
/llvm-project/lld/test/wasm/
H A Dtable-base.s4 # RUN: obj2yaml %t.wasm | FileCheck %s -check-prefix=CHECK-DEFAULT
16 # CHECK-DEFAULT: - Type: TABLE
17 # CHECK-DEFAULT-NEXT: Tables:
18 # CHECK-DEFAULT-NEXT: - Index: 0
19 # CHECK-DEFAULT-NEXT: ElemType: FUNCREF
20 # CHECK-DEFAULT-NEXT: Limits:
21 # CHECK-DEFAULT-NEXT: Flags: [ HAS_MAX ]
22 # CHECK-DEFAULT-NEXT: Minimum: 0x2
23 # CHECK-DEFAULT-NEXT: Maximum: 0x2
25 # CHECK-DEFAULT: - Type: GLOBAL
[all …]
/llvm-project/llvm/test/Transforms/SLPVectorizer/RISCV/
H A Dload-store.ll4 ; RUN: opt < %s -passes=slp-vectorizer -mtriple=riscv64 -mattr=+v -S | FileCheck %s --check-prefixes=DEFAULT
14 ; DEFAULT-LABEL: @simple_copy(
15 ; DEFAULT-NEXT: entry:
16 ; DEFAULT-NEXT: [[TMP0:%.*]] = load <2 x i16>, ptr [[P:%.*]], align 4
17 ; DEFAULT-NEXT: store <2 x i16> [[TMP0]], ptr [[DEST:%.*]], align 4
18 ; DEFAULT-NEXT: ret void
39 ; DEFAULT-LABEL: @vec_add(
40 ; DEFAULT-NEXT: entry:
41 ; DEFAULT-NEXT: [[TMP0:%.*]] = load <2 x i16>, ptr [[P:%.*]], align 4
42 ; DEFAULT
[all...]
/llvm-project/llvm/test/CodeGen/RISCV/rvv/
H A Ddont-sink-splat-operands.ll10 ; RUN: | FileCheck -check-prefix=DEFAULT %s
49 ; DEFAULT-LABEL: sink_splat_add:
50 ; DEFAULT: # %bb.0: # %entry
51 ; DEFAULT-NEXT: lui a2, 1
52 ; DEFAULT-NEXT: add a2, a0, a2
53 ; DEFAULT-NEXT: vsetivli zero, 4, e32, m1, ta, ma
54 ; DEFAULT-NEXT: .LBB0_1: # %vector.body
55 ; DEFAULT-NEXT: # =>This Inner Loop Header: Depth=1
56 ; DEFAULT-NEXT: vle32.v v8, (a0)
57 ; DEFAULT
[all...]
/llvm-project/clang/test/SemaCXX/
H A Dexplicitly-defaulted.cpp13 …Derive() = default; // expected-warning{{explicitly defaulted}} expected-note{{replace 'default' w…
14 …Derive(const Derive &) = default; // expected-warning{{explicitly defaulted}} expected-note{{repla…
15 …Derive(Derive &&) = default; // expected-warning{{explicitly defaulted}} expected-note{{replace 'd…
16 …rive &operator=(const Derive &) = default; // expected-warning{{explicitly defaulted}} expected-no…
17 …Derive &operator=(Derive &&) = default; // expected-warning{{explicitly defaulted}} expected-note{…
18 …~Derive() = default; // expected-warning{{explicitly defaulted}} expected-note{{replace 'default' …
23 …Member() = default; // expected-warning{{explicitly defaulted}} expected-note{{replace 'default' w…
24 …Member(const Member &) = default; // expected-warning{{explicitly defaulted}} expected-note{{repla…
25 …Member(Member &&) = default; // expected-warning{{explicitly defaulted}} expected-note{{replace 'd…
26 …mber &operator=(const Member &) = default; // expected-warning{{explicitly defaulted}} expected-no…
[all …]

12345678910>>...336