Make 'show_type()' just show the type, while 'show_symbol()'
[smatch.git] / target.h
blob1b77d0f1c2ed89eecdf7739ad4979cf5f9ca04dc
1 #ifndef TARGET_H
2 #define TARGET_H
4 /*
5 * Integer data types
6 */
7 #define BITS_IN_CHAR 8
8 #define BITS_IN_SHORT 16
9 #define BITS_IN_INT 32
10 #define BITS_IN_LONG 32
11 #define BITS_IN_LONGLONG 64
13 #define MAX_INT_ALIGNMENT 4
16 * Floating point data types
18 #define BITS_IN_FLOAT 32
19 #define BITS_IN_DOUBLE 64
20 #define BITS_IN_LONGDOUBLE 80
22 #define MAX_FP_ALIGNMENT 8
25 * Pointer data type
27 #define BITS_IN_POINTER 32
28 #define POINTER_ALIGNMENT 4
31 * Enum data types
33 #define BITS_IN_ENUM 32
34 #define ENUM_ALIGNMENT 4
36 #endif