On Sat, 16 Aug 2014, Christos Zoulas wrote:
Module Name: src
Committed By: christos
Date: Sat Aug 16 10:38:43 UTC 2014
Modified Files:
src/lib/libc/time: zic.c
Log Message:
gcc on the sparc needs help with variables it thinks are
unitialized, but are not.
INITIALIZE(ktime);
+ ktime = 0; /* XXX: gcc */
The #define GNUC_or_lint and #ifdef GNUC_or_lint in time/private.h should have made it so INITIALIZE(ktime) was enough.
--apb (Alan Barrett)