From: Stephen Clouse Date: Tue, 22 Jul 2003 21:31:38 +0000 (-0500) Subject: Missing semicolon in PERL_FPU_INIT macro X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fbb56369ae2fbdd8310dd7728063b5ab99de161d;p=p5sagit%2Fp5-mst-13.2.git Missing semicolon in PERL_FPU_INIT macro Message-ID: <20030723023138.GA15653@owns.warpcore.org> p4raw-id: //depot/perl@20189 --- diff --git a/perl.h b/perl.h index 24742c4..acadabe 100644 --- a/perl.h +++ b/perl.h @@ -1935,7 +1935,7 @@ typedef struct clone_params CLONE_PARAMS; # define PERL_FPU_INIT fpsetmask(0); # else # if defined(SIGFPE) && defined(SIG_IGN) -# define PERL_FPU_INIT PL_sigfpe_saved = signal(SIGFPE, SIG_IGN) +# define PERL_FPU_INIT PL_sigfpe_saved = signal(SIGFPE, SIG_IGN); # define PERL_FPU_PRE_EXEC { Sigsave_t xfpe; rsignal_save(SIGFPE, PL_sigfpe_saved, &xfpe); # define PERL_FPU_POST_EXEC rsignal_restore(SIGFPE, &xfpe); } # else