From: Richard Levitte Date: Mon, 4 Jun 2001 16:34:39 +0000 (+0000) Subject: Accept digits in symbol names. Spotted by Brian Havard X-Git-Tag: OpenSSL_0_9_6b~16 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7e9547e1268acb167d942a56e20d2288f9748557;p=oweals%2Fopenssl.git Accept digits in symbol names. Spotted by Brian Havard --- diff --git a/crypto/perlasm/x86unix.pl b/crypto/perlasm/x86unix.pl index 309060ea00..10a7af8bff 100644 --- a/crypto/perlasm/x86unix.pl +++ b/crypto/perlasm/x86unix.pl @@ -79,7 +79,7 @@ sub main'DWP local($addr,$reg1,$reg2,$idx)=@_; $ret=""; - $addr =~ s/(^|[+ \t])([A-Za-z_]+)($|[+ \t])/$1$under$2$3/; + $addr =~ s/(^|[+ \t])([A-Za-z_]+[A-Za-z0-9_]+)($|[+ \t])/$1$under$2$3/; $reg1="$regs{$reg1}" if defined($regs{$reg1}); $reg2="$regs{$reg2}" if defined($regs{$reg2}); $ret.=$addr if ($addr ne "") && ($addr ne 0);