[WINESYNC] dbghelp: Map SIMD dwarf registers on ARM64.

Signed-off-by: André Hentschel <nerv@dawncrow.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>

wine commit id 86864486be64a277f6edf8e66709cd0f17a4eed9 by André Hentschel <nerv@dawncrow.de>
This commit is contained in:
winesync 2020-09-11 13:14:08 +02:00 committed by Jérôme Gardou
parent eaf6edad46
commit d119141669
2 changed files with 2 additions and 1 deletions

View file

@ -158,6 +158,7 @@ static unsigned arm64_map_dwarf_register(unsigned regno, BOOL eh_frame)
if (regno == 29) return CV_ARM64_FP;
if (regno == 30) return CV_ARM64_LR;
if (regno == 31) return CV_ARM64_SP;
if (regno >= 64 && regno <= 95) return CV_ARM64_Q0 + regno - 64;
FIXME("Don't know how to map register %d\n", regno);
return CV_ARM64_NOREG;

View file

@ -3,4 +3,4 @@ directories:
files:
include/dbghelp.h: sdk/include/psdk/dbghelp.h
tags:
wine: 7d441808ac3b1d8bcef7795b636bda14c31c927b
wine: 86864486be64a277f6edf8e66709cd0f17a4eed9