summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2011-12-09 19:16:35 +0000
committerAndy Polyakov <appro@openssl.org>2011-12-09 19:16:35 +0000
commitedcba19c23db0265823ac398dced4da1ebe210ab (patch)
tree1582b87b7eb790516ef349813310cdda94ff1d9d
parentb140ae91375582f3840d4daa13edb1a94951e0b7 (diff)
perlasm/x86gas.pl: give a hand old assemblers assembling loop instruction
[from HEAD].
-rw-r--r--crypto/perlasm/x86gas.pl6
1 files changed, 2 insertions, 4 deletions
diff --git a/crypto/perlasm/x86gas.pl b/crypto/perlasm/x86gas.pl
index 4af871889a..682a3a3163 100644
--- a/crypto/perlasm/x86gas.pl
+++ b/crypto/perlasm/x86gas.pl
@@ -45,10 +45,8 @@ sub ::generic
undef $suffix if ($dst =~ m/^%[xm]/o || $src =~ m/^%[xm]/o);
if ($#_==0) { &::emit($opcode); }
- elsif ($opcode =~ m/^j/o && $#_==1) { &::emit($opcode,@arg); }
- elsif ($opcode eq "call" && $#_==1) { &::emit($opcode,@arg); }
- elsif ($opcode eq "clflush" && $#_==1){ &::emit($opcode,@arg); }
- elsif ($opcode =~ m/^set/&& $#_==1) { &::emit($opcode,@arg); }
+ elsif ($#_==1 && $opcode =~ m/^(call|clflush|j|loop|set)/o)
+ { &::emit($opcode,@arg); }
else { &::emit($opcode.$suffix,@arg);}
1;