summaryrefslogtreecommitdiffstats
path: root/crypto/perlasm
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2011-04-19 19:09:18 +0000
committerAndy Polyakov <appro@openssl.org>2011-04-19 19:09:18 +0000
commite382e4e603079bec1c565b08fdaa2b3c5bd70b49 (patch)
tree78a5816ee24194cc57fe246aedd310ed3ba42dda /crypto/perlasm
parentcb1b3aa151b64ae8813c9b5e4e510ae462ef3aca (diff)
perlasm/x86gas.pl: make OPENSSL_instrument_bus[2] compile.
Diffstat (limited to 'crypto/perlasm')
-rw-r--r--crypto/perlasm/x86gas.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/perlasm/x86gas.pl b/crypto/perlasm/x86gas.pl
index 25f7ba5507..b90195d032 100644
--- a/crypto/perlasm/x86gas.pl
+++ b/crypto/perlasm/x86gas.pl
@@ -47,6 +47,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 eq "clflush" && $#_==1){ &::emit($opcode,@arg); }
elsif ($opcode =~ m/^set/&& $#_==1) { &::emit($opcode,@arg); }
else { &::emit($opcode.$suffix,@arg);}