This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
! HAVE_foo, ! (flags & BIT)
- From: Joern Rennecke <joern dot rennecke at superh dot com>
- To: gcc at gcc dot gnu dot org
- Date: Tue, 27 Jan 2004 20:07:40 +0000 (GMT)
- Subject: ! HAVE_foo, ! (flags & BIT)
codingconventions.html says to use !x, but what about more 'bulky'
stuff that is logically negated, e.g.:
#if ! HAVE_intrinsic_I1l
or
#if !HAVE_intrinsic_I1l
if (! (Illegible || (flags & BIT)))
or
if (!(Illegible || (flags & BIT)))