repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Warn pointer to signed integer cast for ilp32
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr8715.c
blob
e45e77c09f4cb65b50a04a06c862bb2b17f5a115
1
/* { dg-do compile } */
2
/* { dg-options "-Wsign-compare -std=c99" } */
3
4
#include <stdbool.h>
5
6
int
foo
()
7
{
8
unsigned char
b
=
'1'
;
9
10
bool
x
= ~
b
;
/* { dg-warning "promoted ~unsigned is always non-zero" } */
11
12
return
0
;
13
}