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
This commit is contained in:
magumagu9 2008-12-20 06:41:15 +00:00
parent c4f27aaae1
commit 7ad6b0b5bb

View File

@ -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).