blob: 317568370d4c43c98aecbb33ee2d529c6306b89a [file] [log] [blame]
/* { dg-do link } */
/* { dg-options "-O2" } */
extern void link_error(void);
static signed char a;
static short d(unsigned e) {
signed char b;
short c;
a = b = e;
if (b)
return 0;
if (1 >= e) {
c = e == 0;
if (c)
link_error();
}
return 0;
}
int main() { d(a ^ 233); }