genfma: fix spelling of the VFNM instructions
authorH. Peter Anvin <hpa@linux.intel.com>
Mon, 16 Mar 2009 18:51:07 +0000 (11:51 -0700)
committerH. Peter Anvin <hpa@linux.intel.com>
Mon, 16 Mar 2009 18:51:07 +0000 (11:51 -0700)
Fix the spelling of the scalar VFNM instruction in genfma.pl, too,
just in case we need to pull this script out again...

misc/genfma.pl

index 444fe9e..09551ab 100755 (executable)
@@ -11,8 +11,8 @@
 %scalar_insns = (
     'vfmadd'    => 0x99,
     'vfmsub'    => 0x9b,
-    'vfmnadd'   => 0x9c,
-    'vfmnsub'   => 0x9f
+    'vfnmadd'   => 0x9c,
+    'vfnmsub'   => 0x9f
     );
 
 foreach $pi ( sort(keys(%packed_insns)) ) {