Home
last modified time | relevance | path

Searched refs:foo6 (Results 1 – 10 of 10) sorted by relevance

/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/
H A Dpoison.c13 #define foo6 123 macro
14 #pragma GCC poison foo6 /* { dg-warning "foo6" "poison defined macro" } */
15 #define foo6 345 /* { dg-error "foo6" "def of foo6" } */ macro
16 #define foo6 456 /* { dg-error "foo6" "redef of foo6" } */ macro
17 #ifdef foo6 /* { dg-error "foo6" "#ifdef foo6" } */
18 #error hey! foo6 defined!
20 #if defined(foo6) /* { dg-error "foo6" "#if defined foo6" } */
21 #error foo6 still defined!
23 foo6 /* { dg-error "foo6" "use of foo6" } */
H A Dtr-warn6.c12 #define foo6(h3) sdf 'h2' fds 'h3' /* { dg-warning "macro argument \"h3\" would be stringified" "tr… macro
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A Dwtr-label-1.c14 testfunc1 (foo6) in testfunc1() argument
15 int foo6; in testfunc1()
24 foo6: /* { dg-warning "traditional C lacks" "label conflicts with identifier" } */
36 testfunc2 (foo6) in testfunc2() argument
37 int foo6; in testfunc2()
46 foo6:
H A Dnoreturn-1.c40 extern void foo6(void);
42 foo6(void) in foo6() function
51 foo6(); in foo7()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dstructs.c39 struct struct6 foo6 = {'A', 'B', 'C', 'D', 'E', 'F'}, L6; variable
74 return foo6; in fun6()
151 void Fun6(struct struct6 foo6) in Fun6() argument
153 void Fun6(foo6) in Fun6()
154 struct struct6 foo6; in Fun6()
157 L6 = foo6;
245 foo1.a = foo2.a = foo3.a = foo4.a = foo5.a = foo6.a = foo7.a = foo8.a = in main()
253 Fun6(foo6); in main()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dgoto3.C18 { int i=2; foo6:; } // ERROR - in f()
19 goto foo6; // ERROR - in f()
/openbsd-src/gnu/usr.bin/perl/t/cmd/
H A Dsubval.t29 sub foo6 {
48 if (&foo6(0) eq 'true2') {print "ok 11\n";} else {print "not ok 11\n";}
49 if (&foo6(1) eq '1') {print "ok 12\n";} else {print "not ok 12 $x\n";}
/openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/
H A Dstructs.c113 struct struct6 foo6 = {'a','2','c','4','e','6'}, L6; variable
149 return foo6; in fun6()
246 void Fun6(struct struct6 foo6) in Fun6() argument
248 void Fun6(foo6) in Fun6()
249 struct struct6 foo6; in Fun6()
252 L6 = foo6;
416 Fun6(foo6); in main()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/warn/
H A Dnoreturn-1.C57 void __attribute__ ((__noreturn__)) foo6 () in foo6() function
/openbsd-src/gnu/usr.bin/perl/t/lib/warnings/
H A D9uninit1129 my @foo6=(1,undef); $v = sprintf "%s%s",@foo6;
1144 Use of uninitialized value $foo6[1] in sprintf at - line 9.