// Defines CPU dependent macros

#ifndef _CL_HOST_CPU_CONFIG_H
#define _CL_HOST_CPU_CONFIG_H

/* These definitions are adjusted by `configure' automatically. */

/* CPU */
#ifndef __i386__
#undef __i386__
#endif

#ifndef __x86_64__
#undef __x86_64__
#endif

#ifndef __m68k__
#undef __m68k__
#endif

// NB: GCC def's __mips__ both on big-endian and little-endian systems.
#ifndef __mips__
#undef __mips__
#endif

#ifndef __mipsel__
#undef __mipsel__
#endif

#ifndef __mips64__
#undef __mips64__
#endif

#ifndef __sparc__
#undef __sparc__
#endif

#ifndef __sparc64__
#undef __sparc64__
#endif

#ifndef __alpha__
#undef __alpha__
#endif

#ifndef __hppa__
#undef __hppa__
#endif

#ifndef __arm__
#undef __arm__
#endif

#ifndef __rs6000__
#undef __rs6000__
#endif

#ifndef __powerpc64__
#undef __powerpc64__
#endif

#ifndef __m88k__
#undef __m88k__
#endif

#ifndef __convex__
#undef __convex__
#endif

#ifndef __ia64__
#undef __ia64__
#endif

#ifndef __s390__
#undef __s390__
#endif

#endif /* _CL_HOST_CPU_CONFIG_H */