PostgreSQL Source Code  git master
aix.h
Go to the documentation of this file.
1 /*
2  * src/include/port/aix.h
3  */
4 #define CLASS_CONFLICT
5 #define DISABLE_XOPEN_NLS
6 
7 /*
8  * "IBM XL C/C++ for AIX, V12.1" miscompiles, for 32-bit, some inline
9  * expansions of ginCompareItemPointers() "long long" arithmetic. To take
10  * advantage of inlining, build a 64-bit PostgreSQL.
11  */
12 #if defined(__ILP32__) && defined(__IBMC__)
13 #define PG_FORCE_DISABLE_INLINE
14 #endif