Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Jul 2012 17:40:32 +0200
From:      Dimitry Andric <dim@FreeBSD.org>
To:        Kim Culhan <w8hdkim@gmail.com>
Cc:        freebsd-current@FreeBSD.org
Subject:   Re: -current build failure
Message-ID:  <50097BF0.9010103@FreeBSD.org>
In-Reply-To: <CAKZxVQV5xhFDN_WbTk-EMoQ18N8u1f4YhqKSJQFUzbX4NZxhUA@mail.gmail.com>
References:  <CAKZxVQV5xhFDN_WbTk-EMoQ18N8u1f4YhqKSJQFUzbX4NZxhUA@mail.gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On 2012-07-20 16:49, Kim Culhan wrote:
>  Seeing this for r:238655
...
> In file included from /usr/src/sys/modules/dtrace/dtrace/../../../sys/pcpu.h:44:
> ./machine/pcpu.h:226:13: error: indirection of non-volatile null
> pointer will be deleted, not trap
>       [-Werror,-Wnull-dereference]
>             : "m" (*(char *)OFFSETOF_CURTHREAD));
>                    ^~~~~~~~~~~~~~~~~~~~~~~~~~~
> ./machine/pcpu.h:226:13: note: consider using __builtin_trap() or
> qualifying pointer with 'volatile'

That's indeed a valid warning from clang, since OFFSETOF_CURTHREAD is
usually zero.  It's probably due to recent work on dtrace.  I'm not in
the neighborhood of a FreeBSD box right now to verify, but can you
please try to change the cast to "(volatile char *)"?  That should fix
the warning.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?50097BF0.9010103>