aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/perlasm/x86unix.pl
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2007-05-19 17:52:51 +0000
committerAndy Polyakov <appro@openssl.org>2007-05-19 17:52:51 +0000
commitb1e8b4e65d7a17e3c4c9293143a9535c51bb56c3 (patch)
treeadfd2ca7d2d2ab5e8718110eb76115911e0feebb /crypto/perlasm/x86unix.pl
parentc6149e2f02dde61b6fd16c6ec9962f65d7eb37d8 (diff)
downloadopenssl-b1e8b4e65d7a17e3c4c9293143a9535c51bb56c3.tar.gz
x86cpuid fixes.
PR: 1526
Diffstat (limited to 'crypto/perlasm/x86unix.pl')
-rw-r--r--crypto/perlasm/x86unix.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/perlasm/x86unix.pl b/crypto/perlasm/x86unix.pl
index e3f24f860b..2b9e96c8db 100644
--- a/crypto/perlasm/x86unix.pl
+++ b/crypto/perlasm/x86unix.pl
@@ -51,6 +51,7 @@ sub ::generic
if ($#_==0) { &::emit($opcode); }
elsif ($opcode =~ m/^j/o && $#_==1) { &::emit($opcode,@arg); }
elsif ($opcode eq "call" && $#_==1) { &::emit($opcode,@arg); }
+ elsif ($opcode =~ m/^set/&& $#_==1) { &::emit($opcode,@arg); }
else { &::emit($opcode.$suffix,@arg);}
1;