about summary refs log tree commit diff stats
path: root/src/include
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-07-02 14:37:09 +0200
committerptitSeb <sebastien.chev@gmail.com>2021-07-02 14:37:09 +0200
commit7bb9dd18da19f7acaf32927c720403385065175d (patch)
tree93d1b0d6548cf129cabd9a0457c93d401070682e /src/include
parent140254f311eead840969229040c807ad3da3f177 (diff)
downloadbox64-7bb9dd18da19f7acaf32927c720403385065175d.tar.gz
box64-7bb9dd18da19f7acaf32927c720403385065175d.zip
[DYNAREC] Improved the fast native call path
Diffstat (limited to 'src/include')
-rwxr-xr-xsrc/include/regs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/regs.h b/src/include/regs.h
index 4eacf160..b7da3078 100755
--- a/src/include/regs.h
+++ b/src/include/regs.h
@@ -247,6 +247,7 @@ typedef union {
 } mmx87_regs_t;
 
 typedef union {
+	__uint128_t u128;
 	uint64_t q[2];
 	int64_t sq[2];
 	double d[2];