aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/bitsliced-tea/bstea_wordsize.h
blob: 4305db58ba4b7d96adb6987e2f6601e0e23f8f30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __BSTEA_WORDSIZE_H
#define __BSTEA_WORDSIZE_H

/* Determine the wordsize from the preprocessor defines.  */

#if defined __x86_64__ || defined __amd64__ || defined __x86_64 || \
    defined __amd64    || defined _M_X64    || defined __ia64__ || \
    defined __ia64__   || defined __IA64__  || defined __ia64   || \
    defined _M_IA64    || defined __KVX__
# define __BSTEA_WORDSIZE     64
#else
# define __BSTEA_WORDSIZE     32
#endif


#endif /* __BSTEA_WORDSIZE_H */