| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/ |
| H A D | 980523-1.c | 11 int foo2(int d) in foo2() function 21 bar1 = foo2(1); in main() 22 bar2 = foo2(1); in main() 24 h = foo2(1); in main() 25 foo1(1, "a", foo2(1)); in main() 26 foo1(bar1, "a", foo2(1)); in main() 27 foo2(1); in main() 29 h = foo2(1); in main() 32 foo1(1, "n", foo2(1)); in main() 33 foo1(1, "o", foo2(1)); in main() [all …]
|
| H A D | wtr-union-init-2.c | 14 union foo2 union 26 static union foo2 f2 = {0}; in testfunc() 28 …static union foo2 f4 = {1}; /* { dg-warning "traditional C rejects initialization of unions" "init… in testfunc() 30 static union foo2 f6 = {0.0}; in testfunc() 32 …static union foo2 f8 = {1.0}; /* { dg-warning "traditional C rejects initialization of unions" "in… in testfunc() 38 static union foo2 b2 = {0}; in testfunc() 40 static union foo2 b4 = {1}; in testfunc() 42 static union foo2 b6 = {0.0}; in testfunc() 44 static union foo2 b8 = {1.0}; in testfunc()
|
| H A D | dll-3.c | 9 __declspec (dllexport) int foo2 (); 10 __declspec (dllimport) int foo2 (); 12 __declspec (dllexport) int foo1 () { return foo2 (); } in foo1() 13 __declspec (dllexport) int foo2 () { return foo1 (); } in foo2() function
|
| H A D | dll-4.c | 7 __declspec (dllimport) int foo2; variable 8 int foo2 = 5; variable 10 int f () { return foo1 + foo2; } in f()
|
| H A D | typeof-1.c | 9 extern int foo2 (int); 10 extern int foo2 (int) __asm ("bar2"); 11 int foo2 (int x) in foo2() function
|
| H A D | wtr-label-1.c | 8 struct foo2 { int i; }; argument 20 foo2: 42 foo2:
|
| H A D | simd-1.c | 19 int foo2 __attribute__((mode(V4HI))); variable 44 foo = (typeof (foo)) foo2; in hanneke() 47 …foo1 = (typeof (foo1)) foo2; /* { dg-error "can't convert between vector values of different size"… in hanneke()
|
| H A D | 20040127-1.c | 11 extern int foo2(); 22 foo2(a); in foo()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/weak/ |
| H A D | typeof-2.c | 9 extern int foo2 (int x) __attribute__ ((const)); 10 extern __typeof (foo2) foo2 __asm ("baz2"); 13 return foo2 (x) + foo2 (x) + foo2 (x) + foo2 (x) + foo2 (x) + foo2 (x); in bar2()
|
| /openbsd-src/gnu/usr.bin/perl/t/cmd/ |
| H A D | switch.t | 27 sub foo2 { 41 print foo2(0) == 20 ? "ok 7\n" : "not ok 7\n"; 42 print foo2(1) == 1 ? "ok 8\n" : "not ok 8\n"; 43 print foo2(2) == 2 ? "ok 9\n" : "not ok 9\n"; 44 print foo2(3) == 3 ? "ok 10\n" : "not ok 10\n"; 45 print foo2(4) == 4 ? "ok 11\n" : "not ok 11\n"; 46 print foo2(5) == 20 ? "ok 12\n" : "not ok 12\n";
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.benjamin/ |
| H A D | warn02.C | 19 int foo2() {return b;} in foo2() function 27 int foo2() {return b;} in foo2() function 34 int foo2() {return b;} in foo2() function 35 int foo2() {return b;} // ERROR - in foo2() function 42 int foo2(); 43 int foo2(); // ERROR -
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/ |
| H A D | dll-4.C | 10 __declspec (dllexport) int foo2 (); 11 __declspec (dllimport) int foo2 (); 13 __declspec (dllexport) int foo1 () { return foo2 (); } in foo1() 14 __declspec (dllexport) int foo2 () { return foo1 (); } in foo2() function
|
| H A D | dll-5.C | 10 __declspec (dllimport) int foo2; variable 11 int foo2 = 5; variable 13 int f () { return foo1 + foo2; } in f()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/ |
| H A D | eeprof-1.c | 15 static void foo2 () in foo2() function 18 ASSERT (last_fn_entered == foo2); in foo2() 30 ASSERT (last_fn_exited == foo2); in nfoo() 41 foo2 (); in main() 45 ASSERT (last_fn_exited == foo2); in main()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/opt/ |
| H A D | const3.C | 19 int foo2(int, const Type); 23 foo2(foo1(my_out, "type = "), type); in A() 24 foo2(foo1(my_out, "mType = "), mType); in A() 34 int A::foo2(int v, const Type t) { i=0; } in foo2() function
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/ |
| H A D | partial2.C | 8 template<class T> struct foo2 {}; 9 template<class T, unsigned n> struct foo2<T[n]>; 10 foo2<char> bar2; 11 foo2<char[10]> baz2; // ERROR - incomplete type
|
| H A D | defarg8.C | 7 template <class T, class U> class foo2; variable 12 int j = int(foo2<T, U>::baz), // ok 13 int k = foo2<T, U>::baz) {} // gets bogus error - before > - XFAIL *-*-*
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/ |
| H A D | structs.c | 35 struct struct2 foo2 = { 'a', 'b'}, L2; variable 58 return foo2; in fun2() 115 void Fun2(struct struct2 foo2) in Fun2() argument 117 void Fun2(foo2) in Fun2() 118 struct struct2 foo2; in Fun2() 121 L2 = foo2; 245 foo1.a = foo2.a = foo3.a = foo4.a = foo5.a = foo6.a = foo7.a = foo8.a = in main() 249 Fun2(foo2); in main()
|
| H A D | 20020530-1.c | 4 extern unsigned short foo2 (void); 14 unsigned short h = foo2 (); in bar2()
|
| H A D | 20020926-1.c | 8 extern void foo2(int, int); 17 foo2(i1, i3); in bar()
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.asm/ |
| H A D | asmsrc2.s | 6 .global foo2 symbol 7 gdbasm_declare foo2 18 gdbasm_end foo2
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/ext/ |
| H A D | typeof2.C | 10 extern int foo2 (int); 11 extern int foo2 (int) __asm ("bar2"); 12 int foo2 (int x) in foo2() function
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.hp/gdb.objdbg/objdbg02/ |
| H A D | x2.cc | 8 static void foo2() in foo2() function 16 foo2(); in foo1()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/unsorted/ |
| H A D | delay.c | 6 goto foo2; in foo() 9 foo2: in foo()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/ |
| H A D | bool7.C | 13 int foo2 (); 23 B::foo2 () in foo2() function
|