summaryrefslogtreecommitdiff
path: root/src/vm/arm64/cgencpu.h
diff options
context:
space:
mode:
authorCarol Eidt <carol.eidt@microsoft.com>2019-05-14 09:42:06 -0700
committerGitHub <noreply@github.com>2019-05-14 09:42:06 -0700
commitb24cc6e3cb32c212b1c5c32a1f449e2d4ba44e2d (patch)
tree818d3d8587aaa3d2c444953ef115f8167323d36d /src/vm/arm64/cgencpu.h
parente3227026f99b149f6f02afef5896306b7cd38270 (diff)
downloadcoreclr-b24cc6e3cb32c212b1c5c32a1f449e2d4ba44e2d.tar.gz
coreclr-b24cc6e3cb32c212b1c5c32a1f449e2d4ba44e2d.tar.bz2
coreclr-b24cc6e3cb32c212b1c5c32a1f449e2d4ba44e2d.zip
Fix more save/restore code for HVAs (#24434)
Fix OnHijackTripThread. Re-enable the mandelbrot-7 test. Fix #24224
Diffstat (limited to 'src/vm/arm64/cgencpu.h')
-rw-r--r--src/vm/arm64/cgencpu.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/vm/arm64/cgencpu.h b/src/vm/arm64/cgencpu.h
index a2cac4eb7c..997ad7d60f 100644
--- a/src/vm/arm64/cgencpu.h
+++ b/src/vm/arm64/cgencpu.h
@@ -532,12 +532,12 @@ struct HijackArgs
union
{
struct {
- DWORD64 D0;
- DWORD64 D1;
- DWORD64 D2;
- DWORD64 D3;
+ NEON128 Q0;
+ NEON128 Q1;
+ NEON128 Q2;
+ NEON128 Q3;
};
- size_t FPReturnValue[4];
+ NEON128 FPReturnValue[4];
};
};