This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

! 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)))


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]