XMMREG_DST for amd64 (x86_64) was accidentially set to xmm7 instead of
using xmm11 in commit
a1904db1dd0ee8c046a3fd89c822463cd496d78e.
Add SSE4.1 PBLENDVB, BLENDVPS and BLENDVPD
Change it back to xmm11 to make sure a register that isn't available
in 32bit mode is tested. No changes to any of the test results because
of this.
/* Macros for testing XMM register to register and memory to register operations */
-/* Use xmm7 for both 32-bit x86 and amd64 (xmm8-15 don't exist in 32-bit mode) */
+/* Use xmm7 for 32-bit x86 and xxm11 for amd64
+ (xmm8-15 don't exist in 32-bit mode) */
#ifdef __x86_64__
-#define XMMREG_DST "xmm7"
+#define XMMREG_DST "xmm11"
#else
#define XMMREG_DST "xmm7"
#endif