JITTEST always defined on linux, use #if instead

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2146 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2009-02-08 13:59:09 +00:00
parent 5822e284f3
commit 44370518a3
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@
#include "JitCache.h"
#include "JitRegCache.h"
#ifdef JITTEST
#if defined JITTEST && JITTEST
#error Jit64 cannot have JITTEST define
#endif

View File

@ -37,7 +37,7 @@
#include "JitCache.h"
#include "JitRegCache.h"
#ifndef JITTEST
#if !defined JITTEST || ! JITTEST
#error JitIL needs JITTEST define
#endif