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
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
ubsan
/
pr105093.C
blob
49f75ed69cf80fe93956d9d5f0abefa24274aa85
1
// PR sanitizer/105093
2
// { dg-do compile }
3
// { dg-options "-O2 -fsanitize=undefined -Wno-volatile" }
4
5
struct X { X (); ~X (); };
6
7
volatile X
8
foo ()
9
{
10
X x;
11
return x;
12
}