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:
parent
c4f27aaae1
commit
7ad6b0b5bb
|
@ -18,6 +18,8 @@
|
||||||
#ifndef _JIT_ABI_H
|
#ifndef _JIT_ABI_H
|
||||||
#define _JIT_ABI_H
|
#define _JIT_ABI_H
|
||||||
|
|
||||||
|
#include "Common.h"
|
||||||
|
|
||||||
// x86/x64 ABI:s, and helpers to help follow them when JIT-ing code.
|
// x86/x64 ABI:s, and helpers to help follow them when JIT-ing code.
|
||||||
// All convensions return values in EAX (+ possibly EDX).
|
// All convensions return values in EAX (+ possibly EDX).
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue