| /llvm-project-15.0.7/clang/test/Sema/ |
| H A D | attr-sentinel.c | 8 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 D | attr-enforce-tcb.c | 10 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 D | pragma-ms-alloc-text.cpp | 34 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 D | attr-disable-tail-calls.c | 18 __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 D | DelayedTemplateParsing.cpp | 15 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 D | weak-undef.ll | 42 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 D | 2006-12-19-IntelSyntax.ll | 44 call void (...) @foo5( ) 68 call void (...) @foo5( ) 86 declare void @foo5(...)
|
| H A D | codemodel.ll | 64 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 D | call-site-mangling.f90 | 114 procedure(some_bindc_iface) :: foo5 local 115 external :: foo5 117 call foo5()
|
| H A D | procedure-declarations.f90 | 114 external :: foo5 argument 117 call bar(foo5) 125 call foo5(i)
|
| /llvm-project-15.0.7/llvm/test/MC/Mips/ |
| H A D | tls-symbols.s | 12 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 D | symver-asm3.ll | 27 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 D | method-sentinel-attr.m | 10 - (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 D | optional.fir | 72 // 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 D | types-to-llvm.fir | 24 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 D | attr-non-x86-no_caller_saved_registers.cpp | 18 typedef void (*foo5)(int *); typedef 27 …foo5 __attribute__((no_caller_saved_registers)) func2 = foo2; // expected-warning {{unknown attrib… in main()
|
| H A D | attr-x86-no_caller_saved_registers.cpp | 20 typedef void (*foo5)(int *); typedef 31 foo5 __attribute__((no_caller_saved_registers)) func2 = foo2; in main()
|
| H A D | static-assert-cxx17.cpp | 56 void foo5() { in foo5() function 60 template void foo5<int, float>();
|
| /llvm-project-15.0.7/clang/test/CodeGen/ |
| H A D | mangle.c | 43 extern int foo5 __asm__("var2"); 46 foo5 = 1; in test3()
|
| /llvm-project-15.0.7/llvm/test/FileCheck/dump-input/ |
| H A D | context.txt | 20 ; 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 D | thumb2-tbb.ll | 38 tail call void(...) @foo5() 56 tail call void(...) @foo5() 68 declare void @foo5(...)
|
| /llvm-project-15.0.7/clang/test/OpenMP/ |
| H A D | align_clause_codegen.cpp | 36 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 D | switch.ll | 12 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 D | medium-static.ll | 132 ; CHECK-NEXT: bra foo5@PLT ; TAILCALL 151 tail call void(...) @foo5() 169 tail call void(...) @foo5() 181 declare void @foo5(...)
|
| H A D | small-static.ll | 134 ; CHECK-NEXT: bra foo5@PLT ; TAILCALL 153 tail call void(...) @foo5() 171 tail call void(...) @foo5() 183 declare void @foo5(...)
|