From 7ad6b0b5bbceee2eaa179497c80179b6ad0b3f5c Mon Sep 17 00:00:00 2001 From: magumagu9 Date: Sat, 20 Dec 2008 06:41:15 +0000 Subject: [PATCH] Add a missing include; this was causing a crash on 32-bit Linux because the _M_IX86 define was getting missed when this was included in JitAsm.cpp. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1598 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Common/Src/ABI.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/Common/Src/ABI.h b/Source/Core/Common/Src/ABI.h index 177a1254e4..b3710a251c 100644 --- a/Source/Core/Common/Src/ABI.h +++ b/Source/Core/Common/Src/ABI.h @@ -18,6 +18,8 @@ #ifndef _JIT_ABI_H #define _JIT_ABI_H +#include "Common.h" + // x86/x64 ABI:s, and helpers to help follow them when JIT-ing code. // All convensions return values in EAX (+ possibly EDX).