Commit 4de8feba authored by Bill Budge's avatar Bill Budge Committed by Commit Bot

[ia32] Change movups encoding to match other opcodes.

- Changes encoding movups to one where destination is the first operand.

Bug: v8:6843
Change-Id: Ie2f957403aa75b5490446b43e37c064e8055693f
Reviewed-on: https://chromium-review.googlesource.com/676134Reviewed-by: 's avatarJaroslav Sevcik <jarin@chromium.org>
Commit-Queue: Bill Budge <bbudge@chromium.org>
Cr-Commit-Position: refs/heads/master@{#48114}
parent 645cda07
......@@ -2525,7 +2525,7 @@ void Assembler::movaps(XMMRegister dst, XMMRegister src) {
void Assembler::movups(XMMRegister dst, XMMRegister src) {
EnsureSpace ensure_space(this);
EMIT(0x0F);
EMIT(0x11);
EMIT(0x10);
emit_sse_operand(dst, src);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment