Home
last modified time | relevance | path

Searched refs:foo4 (Results 1 – 19 of 19) sorted by relevance

/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A Dtypeof-1.c20 extern int foo4 (int);
21 extern __typeof (foo4) foo4 __asm ("bar4");
22 int foo4 (int x) in foo4() function
H A Dwtr-label-1.c10 int foo4; variable
22 foo4: /* { dg-warning "traditional C lacks" "label conflicts with identifier" } */
44 foo4:
H A Dnoreturn-1.c26 extern void foo4(void);
28 foo4(void) in foo4() function
H A Dreturn-type-2.c36 foo4 (int i) in foo4() function
46 return foo1 (i) + foo2 (i) + foo3 (i) + foo4 (i); in bar()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/ext/
H A Dtypeof2.C21 extern int foo4 (int);
22 extern __typeof (foo4) foo4 __asm ("bar4");
23 int foo4 (int x) in foo4() function
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dpartial2.C20 template<class T> struct foo4 {};
21 template<class T, other1_t n> struct foo4<T[n]>;
22 foo4<char> bar4;
23 foo4<char[10]> baz4; // ERROR - incomplete type -
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dstructs.c37 struct struct4 foo4 = {'1', '2', '3', '4'}, L4; variable
66 return foo4; in fun4()
133 void Fun4(struct struct4 foo4) in Fun4() argument
135 void Fun4(foo4) in Fun4()
136 struct struct4 foo4; in Fun4()
139 L4 = foo4;
245 foo1.a = foo2.a = foo3.a = foo4.a = foo5.a = foo6.a = foo7.a = foo8.a = in main()
251 Fun4(foo4); in main()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dgoto3.C14 try { foo4:; } catch (...) { } // ERROR - in f()
15 goto foo4; // ERROR - in f()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/
H A Dpoison.c9 #pragma GCC poison foo4 foo5
10 foo4 /* { dg-error "foo4" "use of foo4" } */
H A Dtr-warn6.c10 #define foo4(h) sdf 'h3' fds 'h' /* { dg-warning "macro argument \"h\" would be stringified" "tradi… macro
/openbsd-src/gnu/usr.bin/perl/t/cmd/
H A Dsubval.t19 sub foo4 {
43 if (&foo4(0) eq 'true2') {print "ok 7\n";} else {print "not ok 7\n";}
44 if (&foo4(1) eq 'true3') {print "ok 8\n";} else {print "not ok 8\n";}
/openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/
H A Dstructs.c111 struct struct4 foo4 = {'a','2','c','4'}, L4; variable
141 return foo4; in fun4()
228 void Fun4(struct struct4 foo4) in Fun4() argument
230 void Fun4(foo4) in Fun4()
231 struct struct4 foo4; in Fun4()
234 L4 = foo4;
414 Fun4(foo4); in main()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/warn/
H A Dnoreturn-1.C41 int foo4 (int i) in foo4() function
/openbsd-src/gnu/llvm/llvm/docs/
H A DGoldPlugin.rst103 extern void foo4(void);
110 foo4();
126 void foo4(void) {
140 example <libLTO-example>` gold does not currently eliminate foo4.
H A DLinkTimeOptimization.rst48 extern void foo4(void);
60 foo4();
78 void foo4(void) {
104 * And this in turn, enables linker to remove ``foo4()``.
192 files. In the example above, the linker notes that ``foo4()`` is not used any
/openbsd-src/gnu/usr.bin/perl/t/comp/
H A Dproto.t493 sub X::foo4 ($);
494 *X::foo4 = sub ($) {'ok'};
495 print "not " unless X->foo4 eq 'ok';
H A Dparser.t297 eval q[ BEGIN {\&foo4; die } ] for 1..10;
/openbsd-src/gnu/usr.bin/perl/ext/B/t/
H A Db.t484 my ($dummy1, $dummy2, $dummy3, $dummy4) = qw(foo1 foo2 foo3 foo4);
/openbsd-src/gnu/usr.bin/perl/t/lib/warnings/
H A D9uninit1127 my @foo4=(1,undef); chop @foo4;
1142 Use of uninitialized value $foo4[1] in chop at - line 7.