mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-22 06:17:00 +08:00
Remove configure --disable-float4-byval
This build option was only useful to maintain compatibility for version-0 functions, but those are no longer supported, so this option can be removed. float4 is now always pass-by-value; the pass-by-reference code path is completely removed. Discussion: https://www.postgresql.org/message-id/flat/f3e1e576-2749-bbd7-2d57-3f9dcf75255a@2ndquadrant.com
This commit is contained in:
@ -1399,9 +1399,6 @@ bootstrap_template1(void)
|
||||
bki_lines = replace_token(bki_lines, "ALIGNOF_POINTER",
|
||||
(sizeof(Pointer) == 4) ? "i" : "d");
|
||||
|
||||
bki_lines = replace_token(bki_lines, "FLOAT4PASSBYVAL",
|
||||
FLOAT4PASSBYVAL ? "true" : "false");
|
||||
|
||||
bki_lines = replace_token(bki_lines, "FLOAT8PASSBYVAL",
|
||||
FLOAT8PASSBYVAL ? "true" : "false");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user