ARM: Fix disassembly of some VFP instructions with condition codes
authorulan@chromium.org <ulan@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Wed, 27 Feb 2013 11:52:45 +0000 (11:52 +0000)
committerulan@chromium.org <ulan@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Wed, 27 Feb 2013 11:52:45 +0000 (11:52 +0000)
commitd18e118f17a0d8deeecff46917cde4c93b3c0308
treef8dc445516e3620b1b343e13719df78be68aec83
parent610d78cd2cee0c198b79a25172bd247ca9f95262
ARM: Fix disassembly of some VFP instructions with condition codes

Previously, we would disassemble some VFP instructions like this:

  vmla.f64eq d16, d17, d18

This patch moves the condition to the right place:

  vmlaeq.f64 d16, d17, d18

Spotted by Rodolph Perfetta!

BUG=none

Review URL: https://chromiumcodereview.appspot.com/12335129
Patch from Hans Wennborg <hans@chromium.org>.

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@13752 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
src/arm/disasm-arm.cc
test/cctest/test-disasm-arm.cc