Skip to content

Commit c53f738

Browse files
committed
Blacklist xlc 32-bit inlining.
Per a suggestion from Tom Lane. Back-patch to 9.0 (all supported versions). While only 9.4 and up have code known to elicit this compiler bug, we were disabling inlining by accident until commit 43d89a2.
1 parent 021a569 commit c53f738

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

config/test_quiet_include.h

+9
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,12 @@ fun()
77
{
88
return 0;
99
}
10+
11+
/*
12+
* "IBM XL C/C++ for AIX, V12.1" miscompiles, for 32-bit, some inline
13+
* expansions of ginCompareItemPointers() "long long" arithmetic. To take
14+
* advantage of inlining, build a 64-bit PostgreSQL.
15+
*/
16+
#if defined(__ILP32__) && defined(__IBMC__)
17+
#error "known inlining bug"
18+
#endif

0 commit comments

Comments
 (0)