From: Malcolm Beattie Date: Wed, 29 Oct 1997 12:45:32 +0000 (+0000) Subject: Add pp_lock knowledge to compiler X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=79c1c0e29aad3343598ef206840805632b932fd6;p=p5sagit%2Fp5-mst-13.2.git Add pp_lock knowledge to compiler p4raw-id: //depot/perlext/Compiler@188 --- diff --git a/ccop.c b/ccop.c index 5481ea7..4d4ed85 100644 --- a/ccop.c +++ b/ccop.c @@ -542,6 +542,9 @@ static opclass (*ccopaddr[])_((OP *o)) = { cc_baseop, /* egrent */ cc_baseop, /* getlogin */ cc_listop, /* syscall */ +#if PATCHLEVEL > 4 || (PATCHLEVEL == 4 && SUBVERSION > 50) + cc_baseop_or_unop, /* lock */ +#endif }; opclass diff --git a/ccop.h b/ccop.h index b6900b7..4665a0e 100644 --- a/ccop.h +++ b/ccop.h @@ -372,5 +372,8 @@ EXT char *ppnames[] = { "pp_egrent", "pp_getlogin", "pp_syscall", +#if PATCHLEVEL > 4 || (PATCHLEVEL == 4 && SUBVERSION > 50) + "pp_lock", +#endif }; #endif