[ia32][disasm] Fix another unsupported instruction

This adds another data pointer increase to fix an occurence of an
unsupported instruction.

R=jkummerow@chromium.org

Bug: chromium:1206412
Change-Id: I311dbdc0cc33f7d8d0cfe952c1f085a61f3ec225
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2880220
Commit-Queue: Clemens Backes <clemensb@chromium.org>
Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
Cr-Commit-Position: refs/heads/master@{#74667}
This commit is contained in:
Clemens Backes 2021-05-19 14:00:54 +02:00 committed by V8 LUCI CQ
parent 3cd74b65e3
commit 7ae8f4fbe3

View File

@ -2707,6 +2707,7 @@ int DisassemblerIA32::InstructionDecode(v8::internal::Vector<char> out_buffer,
}
} else {
UnimplementedInstruction();
data++;
}
break;