| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/readability/ |
| H A D | misleading-indentation.cpp | 3 void foo1(); 9 foo1(); \ 19 foo1(); in f() 26 foo1(); in f() 33 foo1(); in f() 38 foo1(); in f() 46 foo1(); in f() 51 foo1(); in f() 126 foo1(); in mustPass() 135 foo1(); in mustPassNonTemplate() [all …]
|
| /llvm-project-15.0.7/flang/test/Lower/ |
| H A D | allocatable-callee.f90 | 32 external foo1 33 call foo1(c) 46 external foo1 47 call foo1(c) 60 external foo1 68 call foo1(c) 81 external foo1 96 external foo1 97 call foo1(c(3)) 110 external foo1 [all …]
|
| /llvm-project-15.0.7/flang/test/Semantics/OpenMP/ |
| H A D | omp-do13.f90 | 77 foo1: do j = 0, 10 83 end do foo1 89 foo1: do j = 0, 10 95 end do foo1 102 foo1: do j = 0, 10 108 end do foo1 115 foo1: do j = 0, 10 121 end do foo1 136 end do foo1 157 end do foo1 [all …]
|
| H A D | omp-do08.f90 | 77 foo1: do j = 0, 10 83 end do foo1 89 foo1: do j = 0, 10 92 if (k .lt. 1) cycle foo1 95 end do foo1 102 foo1: do j = 0, 10 108 end do foo1 115 foo1: do j = 0, 10 121 end do foo1 128 foo1: do j = 0, 10 [all …]
|
| H A D | omp-do15.f90 | 41 foo1: do j = 0, 10 46 cycle foo1 51 end do foo1 59 foo1: do j = 0, 10 65 cycle foo1 70 end do foo1 76 foo1: do j = 0, 10 83 cycle foo1 90 end do foo1
|
| H A D | omp-do17.f90 | 15 foo1: do j=0,10 21 cycle foo1 30 end do foo1 37 foo1: do j=0,10 42 cycle foo1 45 cycle foo1 54 end do foo1
|
| H A D | omp-do16.f90 | 42 foo1: do j = 0, 10 48 cycle foo1 53 end do foo1 59 foo1: do j = 0, 10 67 cycle foo1 73 end do foo1
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/ |
| H A D | propagate-attributes-clone.ll | 71 ; LLC: foo1: 78 ; LLC: foo1@gotpcrel32@lo+4 79 ; LLC: foo1@gotpcrel32@hi+12 83 ; LLC: foo1@gotpcrel32@lo+4 84 ; LLC: foo1@gotpcrel32@hi+12 89 ; LLC: foo1@gotpcrel32@lo+4 90 ; LLC: foo1@gotpcrel32@hi+12 112 define void @foo1() #1 { 118 tail call void @foo1() 125 tail call void @foo1() [all …]
|
| H A D | propagate-attributes-single-set.ll | 9 ; OPT: define void @foo1() local_unnamed_addr #1 21 ; LLC: foo1: 28 ; LLC: foo1@gotpcrel32@lo+4 29 ; LLC: foo1@gotpcrel32@hi+12 31 ; LLC: foo1@gotpcrel32@lo+4 32 ; LLC: foo1@gotpcrel32@hi+12 51 define void @foo1() #1 { 57 tail call void @foo1() 63 tail call void @foo1()
|
| H A D | propagate-attributes-bitcast-function.ll | 4 ; GCN: foo1: 7 ; GCN: foo1@gotpcrel32@lo+4 8 ; GCN: foo1@gotpcrel32@hi+12 10 define void @foo1(i32 %x) #1 { 19 call void bitcast (void (i32)* @foo1 to void (float)*)(float %x)
|
| /llvm-project-15.0.7/clang/test/CodeGenCXX/ |
| H A D | ubsan-nullability-arg.cpp | 7 void foo1(); 10 void foo1(void (S0::*_Nonnull f)()); 24 foo1(&S0::foo1); in test1() 37 void foo1(member_ptr _Nonnull); 48 foo1(member); in test1()
|
| /llvm-project-15.0.7/llvm/test/MC/Mips/ |
| H A D | elf-relsym.s | 31 .globl foo1 33 .type foo1,@function 35 .ent foo1 36 foo1: # @foo1 label 71 .end foo1 73 .size foo1, ($tmp0)-foo1
|
| /llvm-project-15.0.7/llvm/test/Transforms/SimplifyCFG/ |
| H A D | switch_thread.ll | 6 declare void @foo1() 19 ; CHECK-NEXT: call void @foo1() 23 ; CHECK-NEXT: call void @foo1() 35 call void @foo1( ) 49 call void @foo1( ) 74 ; CHECK-NEXT: call void @foo1() 80 ; CHECK-NEXT: call void @foo1() 94 call void @foo1( ) 106 call void @foo1( ) 107 call void @foo1( ) [all …]
|
| /llvm-project-15.0.7/clang/test/SemaSYCL/ |
| H A D | kernel-attribute.cpp | 8 [[clang::sycl_kernel]] void foo1(); // expected-warning {{'sycl_kernel' attribute only applies to f… 14 [[clang::sycl_kernel(1)]] void foo1(T P);// expected-error {{'sycl_kernel' attribute takes no argum… 20 [[clang::sycl_kernel]] void foo1(T P); // expected-warning {{'sycl_kernel' attribute only applies t… 26 [[clang::sycl_kernel]] void foo1(T P); // expected-warning {{template parameter of a function templ… 32 [[clang::sycl_kernel]] int foo1(T P); // expected-warning {{function template with 'sycl_kernel' at… 38 [[clang::sycl_kernel]] void foo1(T t, A a); // expected-warning {{function template with 'sycl_kern… 44 [[clang::sycl_kernel]] void foo1(T P);
|
| /llvm-project-15.0.7/clang/test/Sema/ |
| H A D | pragma-ms-alloc-text.cpp | 12 extern "C" void foo1(); 13 #pragma alloc_text(a, foo1) // no-warning 14 #pragma alloc_text(a, foo1) asdf // expected-warning {{extra tokens at end of '#pragma alloc_text'}} 15 #pragma alloc_text(a, foo1 // expected-warning {{missing ')' after '#pragma alloc_text'}} 18 #pragma alloc_text(b, foo1) // no-warning 27 #pragma alloc_text(a, foo1) // expected-error {{'#pragma alloc_text' can only appear at file scope}} in foo3()
|
| H A D | attr-sentinel.c | 7 void foo1 (int x, ...) ATTR; // expected-note 3 {{function has been explicitly marked sentinel here… 14 #define FOOMACRO(...) foo1(__VA_ARGS__) 17 foo1(1, NULL); // OK in test1() 18 foo1(1, 0) ; // expected-warning {{missing sentinel in function call}} in test1() 33 foo1(3, &a, &b, &c); // expected-warning {{missing sentinel in function call}} in test1() 34 foo1(3, &a, &b, &c, (struct A*) 0); in test1()
|
| /llvm-project-15.0.7/llvm/utils/lit/tests/Inputs/shtest-not/ |
| H A D | not-calls-diff.txt | 2 # RUN: echo 'foo' > %t.foo1 11 # RUN: diff %t.foo0 %t.foo1 12 # RUN: not not diff %t.foo0 %t.foo1 13 # RUN: not not not not diff %t.foo0 %t.foo1 16 # RUN: not diff %t.foo0 %t.foo1
|
| /llvm-project-15.0.7/mlir/test/Transforms/ |
| H A D | inlining-recursive.mlir | 6 // CHECK: call @foo1 14 %3 = call @foo1(%arg0) : (i32) -> i32 18 // CHECK-LABEL: func.func @foo1 19 func.func @foo1(%arg0 : i32) -> i32 { 20 // CHECK: call @foo1
|
| /llvm-project-15.0.7/clang/test/SemaObjCXX/ |
| H A D | const-cast.mm | 6 const Foo *foo1 = 0; 7 Foo *foo2 = foo1; // expected-error {{cannot initialize}} 11 const Foo *foo1 = 0; 12 Foo *foo2 = const_cast<Foo*>(foo1);
|
| /llvm-project-15.0.7/llvm/test/CodeGen/ARM/ |
| H A D | no_redundant_trunc_for_cmp.ll | 10 ; CHECK-NEXT: b foo1 17 tail call void bitcast (void (...)* @foo1 to void ()*)() 35 ; CHECK-NEXT: b foo1 40 tail call void bitcast (void (...)* @foo1 to void ()*)() 58 ; CHECK-NEXT: b foo1 64 tail call void bitcast (void (...)* @foo1 to void ()*)() 83 ; CHECK-NEXT: b foo1 89 tail call void bitcast (void (...)* @foo1 to void ()*)() 105 ; CHECK-NEXT: b foo1 112 tail call void bitcast (void (...)* @foo1 to void ()*)() [all …]
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AArch64/GlobalISel/ |
| H A D | select-gv-cmodel-large.mir | 6 @foo1 = common dso_local global [1073741824 x i32] zeroinitializer, align 4 13 …%0 = load i32, i32* getelementptr inbounds ([1073741824 x i32], [1073741824 x i32]* @foo1, i64 0, … 33 ; CHECK: [[MOVZXi:%[0-9]+]]:gpr64 = MOVZXi target-flags(aarch64-g0, aarch64-nc) @foo1, 0 34 …CHECK: [[MOVKXi:%[0-9]+]]:gpr64 = MOVKXi [[MOVZXi]], target-flags(aarch64-g1, aarch64-nc) @foo1, 16 35 …HECK: [[MOVKXi1:%[0-9]+]]:gpr64 = MOVKXi [[MOVKXi]], target-flags(aarch64-g2, aarch64-nc) @foo1, 32 36 ; CHECK: [[MOVKXi2:%[0-9]+]]:gpr64 = MOVKXi [[MOVKXi1]], target-flags(aarch64-g3) @foo1, 48 44 …) from `i32* getelementptr inbounds ([1073741824 x i32], [1073741824 x i32]* @foo1, i64 0, i64 0)`) 50 %4:gpr(p0) = G_GLOBAL_VALUE @foo1 56 …) from `i32* getelementptr inbounds ([1073741824 x i32], [1073741824 x i32]* @foo1, i64 0, i64 0)`)
|
| /llvm-project-15.0.7/flang/test/Fir/ |
| H A D | types-to-llvm.fir | 13 // CHECK-LABEL: foo1 45 // CHECK-LABEL: foo1 75 // CHECK-LABEL: foo1 87 // CHECK-LABEL: foo1 112 // CHECK-LABEL: foo1 129 // CHECK-LABEL: foo1 169 // CHECK-LABEL: foo1 193 // CHECK-LABEL: foo1 217 // CHECK-LABEL: foo1 237 // CHECK-LABEL: foo1 [all …]
|
| /llvm-project-15.0.7/lld/test/ELF/ |
| H A D | dynamic-list.s | 19 # RUN: ld.lld --export-dynamic-symbol foo1 %t.o %t2.so -o %t2 21 # RUN: ld.lld --export-dynamic-symbol=foo1 %t.o %t2.so -o %t2 24 # CHECK: foo1 26 ## Now export all the foo1, foo2, and foo31 symbols 35 # CHECK2: foo1 49 # CHECK3-NEXT: foo1 53 .globl _start, foo1, foo2, foo31 54 foo1: label
|
| H A D | defsym-dynamic.s | 3 # RUN: ld.lld -o %t.so -shared %t.o --defsym=foo2=foo1 6 # CHECK: Name: foo1 9 .globl foo1 10 foo1 = 0x123 define
|
| /llvm-project-15.0.7/llvm/test/CodeGen/X86/ |
| H A D | bool-zext.ll | 11 ; X32-NEXT: calll foo1 18 ; X64-NEXT: jmp foo1 # TAILCALL 20 %call = tail call i32 (...) @foo1(i32 %conv) nounwind 30 ; X32-NEXT: calll foo1 37 ; X64-NEXT: jmp foo1 # TAILCALL 39 %call = tail call i32 (...) @foo1(i32 %conv) nounwind 60 declare dso_local i32 @foo1(...)
|