Patrick Georgi has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/37890 )
Change subject: lib/ubsan: Drop GNUC < 6 guard ......................................................................
Patch Set 1:
(2 comments)
https://review.coreboot.org/c/coreboot/+/37890/1/src/lib/ubsan.c File src/lib/ubsan.c:
https://review.coreboot.org/c/coreboot/+/37890/1/src/lib/ubsan.c@a251 PS1, Line 251: #if !(defined(__GNUC__) && __GNUC__ < 6) if not GCC < 6: add this line is equivelant to if GCC >= 6: add this line, so I guess we should always keep the struct member?
https://review.coreboot.org/c/coreboot/+/37890/1/src/lib/ubsan.c@a264 PS1, Line 264: #if !(defined(__GNUC__) && __GNUC__ < 6) ditto