repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
ubsan
/
pr80404.C
blob
b3fa7c242863e0c6c0b257e4100caf14baae782e
1
// PR sanitizer/80404
2
// { dg-do compile }
3
// { dg-options "-fsanitize=undefined" }
4
5
extern short v;
6
7
unsigned
8
foo ()
9
{
10
unsigned a = (0 < 0 >= (0 >= 0)) / (unsigned) v;
11
return a;
12
}