1
1
Nathan Hjelm dfa8d3a81a btl/vader: work around Oracle compiler bug
This commit works around an Oracle C compiler bug in 5.15 (not sure
when it was introduced). The bug is triggered when we chain
assignments of atomic variables. Ex:

_Atomic intptr x, y;
intptr_t z = 0;

x = y = z;

Will produce a compiler error of the form:

operand cannot have void type: op "="
assignment type mismatch:
	long "=" void

To work around the issue we are removing the chain assignment and
setting the head and tail on different lines.

Fixes #5814

Signed-off-by: Nathan Hjelm <hjelmn@lanl.gov>
2018-10-03 08:55:51 -06:00
..
2018-09-21 00:51:40 -06:00
2018-03-26 14:21:21 -07:00
2018-10-02 12:08:18 -04:00
2018-09-14 10:48:55 -06:00
2018-09-14 10:48:55 -06:00
2015-06-23 20:59:57 -07:00