aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/perlasm
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2001-06-04 16:34:31 +0000
committerRichard Levitte <levitte@openssl.org>2001-06-04 16:34:31 +0000
commit20251f01ea4f78a95bd5fa4e0657f11313a68f11 (patch)
tree150e337d7467fa2b31be82d2a4f714c1e9b329d1 /crypto/perlasm
parent528f6b81db3c746542b1ff8d4e32189b33d6d400 (diff)
downloadopenssl-20251f01ea4f78a95bd5fa4e0657f11313a68f11.tar.gz
Accept digits in symbol names. Spotted by Brian Havard <brianh@kheldar.apana.org.au>
Diffstat (limited to 'crypto/perlasm')
-rw-r--r--crypto/perlasm/x86unix.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/perlasm/x86unix.pl b/crypto/perlasm/x86unix.pl
index 573d4f1126..9ceabf0705 100644
--- a/crypto/perlasm/x86unix.pl
+++ b/crypto/perlasm/x86unix.pl
@@ -81,7 +81,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);