Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit faa87f0

Browse files
committed
Addressing arm64 build break due to old compiler
[tfs-changeset: 1619335]
1 parent f1b3fc7 commit faa87f0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/debug/ee/arm64/arm64walker.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@ BYTE* NativeWalker::SetupOrSimulateInstructionForPatchSkip(T_CONTEXT * context,
194194
RegContents = (PCODE)GetMem(ip);
195195
if ((opcode & 0x4000000)) //LDR literal for SIMD
196196
{
197+
NEON128 SimdRegContents;
197198
LOG((LF_CORDB, LL_INFO100000, "Arm64Walker::Simulate opcode: %x to LDR V%d %p\n", opcode, RegNum, offset));
198199
short opc = (opcode >> 30);
199200
switch (opc)
@@ -206,7 +207,7 @@ BYTE* NativeWalker::SetupOrSimulateInstructionForPatchSkip(T_CONTEXT * context,
206207
break;
207208

208209
case 2: //SIMD 16 byte data
209-
NEON128 SimdRegContents = GetSimdMem(ip);
210+
SimdRegContents = GetSimdMem(ip);
210211
SetSimdReg(context, RegNum, SimdRegContents);
211212
break;
212213
default:

0 commit comments

Comments
 (0)