Skip to content

Commit 9f3d3fb

Browse files
committed
Fix optimization hazard in gram.y's makeOrderedSetArgs(), redux.
It appears that commit cf63c64, which intended to prevent misoptimization of the result-building step in makeOrderedSetArgs, didn't go far enough: buildfarm member hornet's version of xlc is now optimizing back to the old, broken behavior in which list_length(directargs) is fetched only after list_concat() has changed that value. I'm not entirely convinced whether that's an undeniable compiler bug or whether it can be justified by a sufficiently aggressive interpretation of C sequence points. So let's just change the code to make it harder to misinterpret. Back-patch to all supported versions, just in case. Discussion: https://postgr.es/m/1830491.1601944935@sss.pgh.pa.us
1 parent 0c79dcb commit 9f3d3fb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/parser/gram.y

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15409,7 +15409,7 @@ makeOrderedSetArgs(List *directargs, List *orderedargs,
1540915409
core_yyscan_t yyscanner)
1541015410
{
1541115411
FunctionParameter *lastd = (FunctionParameter *) llast(directargs);
15412-
int ndirectargs;
15412+
Value *ndirectargs;
1541315413

1541415414
/* No restriction unless last direct arg is VARIADIC */
1541515415
if (lastd->mode == FUNC_PARAM_VARIADIC)
@@ -15433,10 +15433,10 @@ makeOrderedSetArgs(List *directargs, List *orderedargs,
1543315433
}
1543415434

1543515435
/* don't merge into the next line, as list_concat changes directargs */
15436-
ndirectargs = list_length(directargs);
15436+
ndirectargs = makeInteger(list_length(directargs));
1543715437

1543815438
return list_make2(list_concat(directargs, orderedargs),
15439-
makeInteger(ndirectargs));
15439+
ndirectargs);
1544015440
}
1544115441

1544215442
/* insertSelectOptions()

0 commit comments

Comments
 (0)