summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@linux.intel.com>2009-03-16 11:51:07 -0700
committerH. Peter Anvin <hpa@linux.intel.com>2009-03-16 11:51:07 -0700
commit40d37eef81937b202c50ed2b1a3ec4b096f971ae (patch)
tree36728fc063d026e7efb5ecb8db6cb1492d0cb86d /misc
parentb8abbbe826d3ad7500c94cb730991667ec964685 (diff)
downloadnasm-40d37eef81937b202c50ed2b1a3ec4b096f971ae.tar.gz
genfma: fix spelling of the VFNM instructions
Fix the spelling of the scalar VFNM instruction in genfma.pl, too, just in case we need to pull this script out again...
Diffstat (limited to 'misc')
-rwxr-xr-xmisc/genfma.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/genfma.pl b/misc/genfma.pl
index 444fe9e8..09551abe 100755
--- a/misc/genfma.pl
+++ b/misc/genfma.pl
@@ -11,8 +11,8 @@
%scalar_insns = (
'vfmadd' => 0x99,
'vfmsub' => 0x9b,
- 'vfmnadd' => 0x9c,
- 'vfmnsub' => 0x9f
+ 'vfnmadd' => 0x9c,
+ 'vfnmsub' => 0x9f
);
foreach $pi ( sort(keys(%packed_insns)) ) {