Home
last modified time | relevance | path

Searched refs:never (Results 1 – 25 of 505) sorted by relevance

12345678910>>...21

/llvm-project-15.0.7/llvm/test/Transforms/LoopSimplifyCFG/
H A Dhandle_dead_exits.ll13 br i1 0, label %never, label %next
24 never:
27 never-unwind:
28 ; CHECK: never-unwind:
40 br i1 0, label %never, label %next
51 never:
54 never-unwind:
55 ; CHECK: never-unwind:
57 %p = phi i32 [1, %never]
68 br i1 0, label %never, label %next
[all …]
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Dwarn-called-once.m134 // expected-warning@-1{{'callback' parameter marked 'called_once' is never called}}
138 // expected-warning@-1{{'callback' parameter marked 'called_once' is never called}}
274 // expected-warning@-1{{'inner' parameter marked 'called_once' is never called}}
528 // expected-warning@-1{{'callback' parameter marked 'called_once' is never called}}
673 // expected-warning@-1{{completion handler is never called}}
677 // expected-warning@-1{{completion handler is never called}}
681 // expected-warning@-1{{completion handler is never called}}
719 // expected-warning@-1{{'callback' parameter marked 'called_once' is never called}}
839 // expected-warning@-1{{'callback' parameter marked 'called_once' is never called}}
900 // expected-warning@-1{{completion handler is never called}}
[all …]
H A Dwarn-unreachable.m15 return; // expected-warning {{will never be executed}}
25 return 1; // expected-warning {{will never be executed}}
34 return 0; // expected-warning {{will never be executed}}
56 …if (NO) calledFun(); // expected-warning {{will never be executed}} expected-note {{silence by add…
62 calledFun(); // expected-warning {{will never be executed}}
70 calledFun(); // expected-warning {{code will never be executed}}
/llvm-project-15.0.7/clang/test/Sema/
H A Dwarn-unreachable.m9 f(); // expected-warning{{will never be executed}}
33 f(); // expected-warning{{will never be executed}}
38 f(); // expected-warning{{will never be executed}}
52 f(); // expected-warning{{never be executed}}
/llvm-project-15.0.7/llvm/test/Transforms/Inline/
H A Dinline_noprofile.ll8 …'profile' not inlined into 'profile_caller' because it should never be inlined (cost=never): confl…
9 …rofile' not inlined into 'noprofile_caller' because it should never be inlined (cost=never): confl…
H A Dnoduplicate.ll16 ; CHECK: 'callee' not inlined into 'caller' because it should never be inlined (cost=never): nodupl…
/llvm-project-15.0.7/llvm/test/FileCheck/
H A Denvvar-opts.txt7 ; RUN: not FileCheck %s -dump-input=never -input-file %t.in 2>&1 \
11 ; RUN: not FileCheck %s -dump-input=never -input-file %t.in 2>&1 \
15 ; RUN: not FileCheck %s -dump-input=never -input-file %t.in 2>&1 \
H A Dverbose.txt2 ; RUN: FileCheck --dump-input=never --input-file %s %s 2>&1 | \
6 ; RUN: FileCheck --dump-input=never -v --input-file %s %s 2>&1 | \
10 ; RUN: FileCheck --dump-input=never -vv --input-file %s %s 2>&1 | \
14 ; RUN: FileCheck --dump-input=never -v -v --input-file %s %s 2>&1 | \
18 ; RUN: FileCheck --dump-input=never -vv -vv --input-file %s %s 2>&1 | \
22 ; RUN: FileCheck --dump-input=never -v -vv --input-file %s %s 2>&1 | \
26 ; RUN: FileCheck --dump-input=never -vv -v --input-file %s %s 2>&1 | \
/llvm-project-15.0.7/llvm/test/FileCheck/match-time-error-propagation/
H A Dinvalid-expected-pattern.txt25 ; Check -dump-input=never cases.
29 RUN: not FileCheck -dump-input=never %t.chk < %t.in 2>&1 \
33 RUN: not FileCheck -dump-input=never -v %t.chk < %t.in 2>&1 \
37 RUN: not FileCheck -dump-input=never -vv %t.chk < %t.in 2>&1 \
H A Dmatched-expected-pattern.txt34 ; Check -dump-input=never cases.
38 RUN: not FileCheck -dump-input=never %t.chk < %t.in 2>&1 \
42 RUN: not FileCheck -dump-input=never -v %t.chk < %t.in 2>&1 \
46 RUN: not FileCheck -dump-input=never -vv %t.chk < %t.in 2>&1 \
H A Dinvalid-excluded-pattern.txt38 ; Check -dump-input=never cases.
42 RUN: not FileCheck -dump-input=never %t.chk < %t.in 2>&1 \
46 RUN: not FileCheck -dump-input=never -v %t.chk < %t.in 2>&1 \
50 RUN: not FileCheck -dump-input=never -vv %t.chk < %t.in 2>&1 \
H A Dmatched-excluded-pattern.txt59 ; Check -dump-input=never cases.
63 RUN: not FileCheck -dump-input=never %t.chk < %t.in 2>&1 \
67 RUN: not FileCheck -dump-input=never -v %t.chk < %t.in 2>&1 \
71 RUN: not FileCheck -dump-input=never -vv %t.chk < %t.in 2>&1 \
/llvm-project-15.0.7/clang/test/Analysis/
H A Dobjc-arc.m119 …SObject alloc]; // expected-warning {{Value stored to 'x' during its initialization is never read}}
139 id obj1 = (__bridge_transfer id)CFCreateSomething(); // expected-warning{{never read}}
144 id obj4 = (__bridge NSString*)CFGetString(); // expected-warning{{never read}}
145 …id obj5 = (__bridge id)CFCreateSomething(); // expected-warning{{never read}} expected-warning{{le…
146 …id obj6 = (__bridge NSString*)CFCreateString(); // expected-warning{{never read}} expected-warning…
150 CFTypeRef cf1 = (__bridge_retained CFTypeRef)CreateSomething(); // expected-warning{{never read}}
151 …CFStringRef cf2 = (__bridge_retained CFStringRef)CreateNSString(); // expected-warning{{never read…
152 CFTypeRef cf3 = (__bridge CFTypeRef)CreateSomething(); // expected-warning{{never read}}
153 CFStringRef cf4 = (__bridge CFStringRef)CreateNSString(); // expected-warning{{never read}}
/llvm-project-15.0.7/clang/test/Analysis/Checkers/
H A DRunLoopAutoreleaseLeakChecker.m32 …cated in the autorelease pool followed by the launch of main run loop may never get released; cons…
51 … allocated in the autorelease pool followed by the launch of xpc_main may never get released; cons…
59 …cated in the autorelease pool followed by the launch of main run loop may never get released; cons…
84 …cated in the autorelease pool followed by the launch of main run loop may never get released; cons…
94 …torelease pool of last resort followed by the launch of main run loop may never get released; cons…
125 …he autorelease pool of last resort followed by the launch of xpc_main may never get released; cons…
159 …torelease pool of last resort followed by the launch of main run loop may never get released; cons…
/llvm-project-15.0.7/lldb/test/Shell/ScriptInterpreter/Lua/Inputs/
H A Dwatchpoint3.in5 print("never triggers")
8 # CHECK-NOT: never triggers
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Bufferization/IR/
H A DBufferizableOpInterface.td44 method will never be called on OpOperands that do not have a tensor
67 This method will never be called on OpOperands that do not have a
70 This method will never be called on OpOperands that do not have an
129 any other bufferization decisions. This method will never be called on
144 bufferized in-place. This method will never be called on OpOperands
160 bufferized in-place. This method will never be called on OpResults
197 "equivalence" relation. This method will never be called on OpResults
198 that do not have a tensor type. It will also never be called on
285 method will never be called on OpResults that do not have a tensor
305 conflicting, return `false`. This method will never be called with
[all …]
/llvm-project-15.0.7/llvm/test/Assembler/
H A D2003-05-21-EmptyStructTest.ll4 ; The old C front-end never generated empty structures, now the new one
5 ; can. For some reason we never handled them in the parser. Weird.
/llvm-project-15.0.7/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
H A Dconst_Types.pass.cpp24 struct never { struct
37 { static_assert(never<T>::value, "This should not be instantiated"); } in NoValueCtor() argument
53 { static_assert(never<T>::value, "This should not be instantiated"); } in NoValueCtorEmpty()
/llvm-project-15.0.7/compiler-rt/lib/xray/
H A Dxray_never_instrument.txt2 # never instrument. You can use this as an argument to
3 # -fxray-never-instrument=<path> along with your project-specific lists.
/llvm-project-15.0.7/llvm/test/FileCheck/comment/
H A Dsuppresses-checks.txt10 RUN: %ProtectFileCheckOutput FileCheck -dump-input=never -vv %t-1.chk < %t-1.in 2>&1 | \
19 RUN: FileCheck -dump-input=never -vv %t-2.chk -comment-prefixes=MY-PREFIX < %t-2.in 2>&1 | \
29 RUN: FileCheck -dump-input=never -vv %t-3.chk -comment-prefixes=Foo_1,Bar_2 \
H A Dunused-comment-prefixes.txt8 RUN: FileCheck -dump-input=never -vv %t.chk < %t.in 2>&1 | FileCheck %s
14 RUN: FileCheck -dump-input=never -vv -comment-prefixes=FOO %t.chk < %t.in 2>&1 | FileCheck %s
H A Dsuffixes.txt9 RUN: %ProtectFileCheckOutput FileCheck -dump-input=never -vv %t.chk < %t.in 2>&1 | \
18 RUN: FileCheck -dump-input=never -vv -comment-prefixes=COM,RUN,RUN-NOT %t.chk < %t.in 2>&1 | \
/llvm-project-15.0.7/llvm/test/Transforms/LoopDeletion/
H A Dunreachable-loops.ll5 ; Checking that we can delete loops that are never executed.
9 ; delete the infinite loop because it is never executed.
22 ; REMARKS: Loop deleted because it never executes
89 ; REMARKS: Loop deleted because it never executes
178 ; REMARKS: Loop deleted because it never executes
259 ; REMARKS: Loop deleted because it never executes
296 ; REMARKS: Loop deleted because it never executes
325 ; REMARKS: Loop deleted because it never executes
396 ; REMARKS: Loop deleted because it never executes
437 ; REMARKS: Loop deleted because it never executes
[all …]
/llvm-project-15.0.7/polly/test/DeLICM/
H A Dreduction_looprotate_alwaystaken.ll3 ; Verify that delicm can cope with never taken PHI incoming edges.
4 ; The edge %body -> %body_phi is never taken, hence the access MemoryKind::PHI,
5 ; WRITE in %body for %phi is never used.
/llvm-project-15.0.7/llvm/test/FileCheck/dump-input/
H A Denable.txt46 ; Check -dump-input=never.
54 ; RUN: -match-full-lines -dump-input=never 2>&1 \
61 ; RUN: -match-full-lines -dump-input=never 2>&1 \
67 ; RUN: -match-full-lines -dump-input=never -v 2>&1 \
73 ; RUN: -match-full-lines -dump-input=never -v 2>&1 \
184 ; fail, never => fail (FileCheck fail => dump)
187 ; RUN: -match-full-lines -dump-input=fail -dump-input=never -v \
234 ; Error diagnostics are never suppressed.

12345678910>>...21