Home
last modified time | relevance | path

Searched refs:foo5 (Results 1 – 25 of 129) sorted by relevance

123456

/llvm-project-15.0.7/clang/test/Sema/
H A Dattr-sentinel.c8 void foo5 (int x, ...) __attribute__ ((__sentinel__(1))); // expected-note {{function has been expl…
19 foo5(1, NULL, 2); // OK in test1()
20 foo5(1,2,NULL, 1); // OK in test1()
21 foo5(1, NULL, 2, 1); // expected-warning {{missing sentinel in function call}} in test1()
H A Dattr-enforce-tcb.c10 void foo5 (void) PLACE_IN_TCB_LEAF("bar");
20 foo5(); // OK - in leaf node in foo1()
31 void foo5(void) { in foo5() function
H A Dpragma-ms-alloc-text.cpp34 void foo5(); // expected-note {{previous declaration is here}}
35 #pragma alloc_text(c, foo5) // expected-error {{'#pragma alloc_text' is applicable only to function…
36 extern "C" void foo5() {} // expected-error {{declaration of 'foo5' has a different language link… in foo5() function
H A Dattr-disable-tail-calls.c18 __attribute__((disable_tail_calls)) void foo5(void); // expected-note {{conflicting attribute is he…
19 __attribute__((naked)) void foo5(void); // expected-error {{'naked' and 'disable_tail_calls' attrib…
/llvm-project-15.0.7/clang/test/Parser/
H A DDelayedTemplateParsing.cpp15 void foo5() { } // expected-note {{previous definition is here}} in foo5() function in B
24 void B<T>::foo5() { // expected-error {{redefinition of 'foo5'}} in foo5() function in B
46 template <class T> void foo5() {} //expected-note {{previous definition is here}} in foo5() function
47 template <class T> void foo5() {} // expected-error {{redefinition of 'foo5'}} in foo5() function
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dweak-undef.ll42 declare extern_weak hidden i32 @foo5()
44 ret ptr @foo5
47 ; CHECK: movq foo5@GOTPCREL(%rip), %rax
49 ; I386: movl foo5@GOT(%eax), %eax
H A D2006-12-19-IntelSyntax.ll44 call void (...) @foo5( )
68 call void (...) @foo5( )
86 declare void @foo5(...)
H A Dcodemodel.ll64 define i32 @foo5() nounwind readonly {
66 ; CHECK-SMALL-LABEL: foo5:
68 ; CHECK-KERNEL-LABEL: foo5:
/llvm-project-15.0.7/flang/test/Lower/
H A Dcall-site-mangling.f90114 procedure(some_bindc_iface) :: foo5 local
115 external :: foo5
117 call foo5()
H A Dprocedure-declarations.f90114 external :: foo5 argument
117 call bar(foo5)
125 call foo5(i)
/llvm-project-15.0.7/llvm/test/MC/Mips/
H A Dtls-symbols.s12 lui $1, %tprel_lo(foo5)
19 .hidden foo5
26 # CHECK: 5: {{.+}} {{.+}} TLS GLOBAL HIDDEN UND foo5
/llvm-project-15.0.7/llvm/test/LTO/X86/
H A Dsymver-asm3.ll27 module asm ".symver foo5, foo@@@VER5"
41 declare void @foo5()
42 ; CHECK-DAG: U foo5
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Dmethod-sentinel-attr.m10 - (void) foo5 : (int)x, ... __attribute__ ((__sentinel__(1))); // expected-note {{method has been e…
32 [p foo5:1, NULL, 2]; // OK
33 [p foo5:1, 2, NULL, 1]; // OK
34 [p foo5:1, NULL, 2, 1]; // expected-warning {{missing sentinel in method dispatch}}
/llvm-project-15.0.7/flang/test/Fir/
H A Doptional.fir72 // CHECK-LABEL: @foo5(
74 func.func @foo5(%arg0: (i32)->(i64)) -> i1 {
84 // CHECK: call i1 @foo5(ptr null)
85 %1 = fir.call @foo5(%0) : ((i32)->(i64)) -> i1
H A Dtypes-to-llvm.fir24 func.func private @foo5(%arg0: !fir.array<?x6xi32>)
25 // CHECK-LABEL: foo5
57 // CHECK-LABEL: foo5
144 func.func private @foo5(%arg0: !fir.heap<!fir.array<2xf32>>)
145 // CHECK-LABEL: foo5
252 func.func private @foo5(%arg0: complex<f128>)
253 // CHECK-LABEL: foo5
280 func.func private @foo5(%arg0: !fir.complex<16>)
281 // CHECK-LABEL: foo5
308 func.func private @foo5(%arg0: !fir.vector<28:f128>)
[all …]
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dattr-non-x86-no_caller_saved_registers.cpp18 typedef void (*foo5)(int *); typedef
27foo5 __attribute__((no_caller_saved_registers)) func2 = foo2; // expected-warning {{unknown attrib… in main()
H A Dattr-x86-no_caller_saved_registers.cpp20 typedef void (*foo5)(int *); typedef
31 foo5 __attribute__((no_caller_saved_registers)) func2 = foo2; in main()
H A Dstatic-assert-cxx17.cpp56 void foo5() { in foo5() function
60 template void foo5<int, float>();
/llvm-project-15.0.7/clang/test/CodeGen/
H A Dmangle.c43 extern int foo5 __asm__("var2");
46 foo5 = 1; in test3()
/llvm-project-15.0.7/llvm/test/FileCheck/dump-input/
H A Dcontext.txt20 ; RUN: echo foo5 >> %t.in
30 ; RUN: echo foo5 >> %t.in
35 ; RUN: echo foo5 >> %t.in
45 ; RUN: echo foo5 >> %t.in
64 ; C5-NEXT: 4: foo5
77 ; C5-NEXT: 14: foo5
85 ; C5-NEXT: 19: foo5
97 ; C5-NEXT: 29: foo5
133 ; W5-NEXT: 14: foo5
146 ; W5-NEXT: 19: foo5
/llvm-project-15.0.7/llvm/test/CodeGen/Thumb2/
H A Dthumb2-tbb.ll38 tail call void(...) @foo5()
56 tail call void(...) @foo5()
68 declare void @foo5(...)
/llvm-project-15.0.7/clang/test/OpenMP/
H A Dalign_clause_codegen.cpp36 int foo5[50]; in main() local
47 #pragma omp allocate(foo5) align(32) allocator(omp_const_mem_alloc) in main()
/llvm-project-15.0.7/llvm/test/CodeGen/WebAssembly/
H A Dswitch.ll12 declare void @foo5()
34 ; CHECK: call foo5{{$}}
87 tail call void @foo5()
118 ; CHECK: call foo5{{$}}
171 tail call void @foo5()
/llvm-project-15.0.7/llvm/test/CodeGen/M68k/CodeModel/
H A Dmedium-static.ll132 ; CHECK-NEXT: bra foo5@PLT ; TAILCALL
151 tail call void(...) @foo5()
169 tail call void(...) @foo5()
181 declare void @foo5(...)
H A Dsmall-static.ll134 ; CHECK-NEXT: bra foo5@PLT ; TAILCALL
153 tail call void(...) @foo5()
171 tail call void(...) @foo5()
183 declare void @foo5(...)

123456