8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 021a569 commit c53f738Copy full SHA for c53f738
config/test_quiet_include.h
@@ -7,3 +7,12 @@ fun()
7
{
8
return 0;
9
}
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