mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 23:02:01 +00:00
qcommon: Add idsparc and set when __sparc__ && !C_ONLY
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
913e81522c
commit
17a81ff7c9
1 changed files with 7 additions and 0 deletions
|
@ -29,6 +29,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|||
#define id386 0
|
||||
#define idppc 0
|
||||
#define idppc_altivec 0
|
||||
#define idsparc 0
|
||||
|
||||
#else
|
||||
|
||||
|
@ -58,6 +59,12 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|||
#define idppc_altivec 0
|
||||
#endif
|
||||
|
||||
#if defined(__sparc__) && !defined(C_ONLY)
|
||||
#define idsparc 1
|
||||
#else
|
||||
#define idsparc 0
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
#ifndef __ASM_I386__ // don't include the C bits if included from qasm.h
|
||||
|
|
Loading…
Reference in a new issue