view gcc/testsuite/g++.dg/warn/overflow-warn-5.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* PR c/27273 */
/* { dg-do compile } */

// This used to warn about "overflow in implicit constant conversion",
// which was wrong; 512 is never converted to unsigned char.  Rather, an
// appropriate warning would be that the & expression always evaluates to 0
// because of the limited range of unsigned char.

unsigned char rx_async(unsigned char p) {
    return p & 512; /* { dg-warning "" "" { xfail *-*-* } } */
}