From: H. Peter Anvin Date: Mon, 16 Mar 2009 18:51:07 +0000 (-0700) Subject: genfma: fix spelling of the VFNM instructions X-Git-Tag: nasm-2.11.05~1051 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=40d37eef81937b202c50ed2b1a3ec4b096f971ae;p=platform%2Fupstream%2Fnasm.git 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... --- diff --git a/misc/genfma.pl b/misc/genfma.pl index 444fe9e..09551ab 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)) ) {