public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/64609] New: No -Wbool-compare warning on "(a = 0 && 0) <= 4"
@ 2015-01-15  6:58 chengniansun at gmail dot com
  2015-01-15  7:24 ` [Bug c/64609] " pinskia at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: chengniansun at gmail dot com @ 2015-01-15  6:58 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64609

            Bug ID: 64609
           Summary: No -Wbool-compare warning on "(a = 0 && 0) <= 4"
           Product: gcc
           Version: 5.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: chengniansun at gmail dot com

This might not be a bug, but a feature request. There is no -Wbool-compare
warning for the following code. 

$: cat s.c
int a;
void fn1() { ((a = 0 && 0) <= 4); }
$: 
$: gcc-trunk -c s.c -Wbool-compare
$: 
$: clang-trunk -c s.c -Wno-unused-value
s.c:2:28: warning: comparison of constant 4 with boolean expression is always
      true [-Wtautological-constant-out-of-range-compare]
void fn1() { ((a = 0 && 0) <= 4); }
              ~~~~~~~~~~~~ ^  ~
1 warning generated.
$: 
$:


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-03-17  6:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-15  6:58 [Bug c/64609] New: No -Wbool-compare warning on "(a = 0 && 0) <= 4" chengniansun at gmail dot com
2015-01-15  7:24 ` [Bug c/64609] " pinskia at gcc dot gnu.org
2015-01-21  8:10 ` [Bug c/64609] No -Wbool-compare warning on "(a = 0 && 0) <= 4" and "0 > a < 0" chengniansun at gmail dot com
2015-03-17  6:55 ` mpolacek at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).