diff options
author | bunnei <bunneidev@gmail.com> | 2015-08-12 06:00:44 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-08-16 00:03:25 +0200 |
commit | bd7e691f78d916ed6ae5396b2d646d9b3a053dd7 (patch) | |
tree | a20367004f684afeca83e795ce66e62115e8e79d /src/common/x64/abi.h | |
parent | JIT: Support negative address offsets. (diff) | |
download | yuzu-bd7e691f78d916ed6ae5396b2d646d9b3a053dd7.tar yuzu-bd7e691f78d916ed6ae5396b2d646d9b3a053dd7.tar.gz yuzu-bd7e691f78d916ed6ae5396b2d646d9b3a053dd7.tar.bz2 yuzu-bd7e691f78d916ed6ae5396b2d646d9b3a053dd7.tar.lz yuzu-bd7e691f78d916ed6ae5396b2d646d9b3a053dd7.tar.xz yuzu-bd7e691f78d916ed6ae5396b2d646d9b3a053dd7.tar.zst yuzu-bd7e691f78d916ed6ae5396b2d646d9b3a053dd7.zip |
Diffstat (limited to '')
-rw-r--r-- | src/common/x64/abi.h (renamed from src/common/abi.h) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/abi.h b/src/common/x64/abi.h index bb9f7c95f..0ee189d45 100644 --- a/src/common/abi.h +++ b/src/common/x64/abi.h @@ -17,7 +17,7 @@ #pragma once -#include "common_types.h" +#include "common/common_types.h" // x86/x64 ABI:s, and helpers to help follow them when JIT-ing code. // All convensions return values in EAX (+ possibly EDX). @@ -55,7 +55,7 @@ // 32-bit bog standard cdecl, shared between linux and windows // MacOSX 32-bit is same as System V with a few exceptions that we probably don't care much about. -#elif _M_X86_64 // 64 bit calling convention +#elif ARCHITECTURE_X64 // 64 bit calling convention #ifdef _WIN32 // 64-bit Windows - the really exotic calling convention |