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
* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
opt
/
emptyunion.C
blob
105faed58440f34c569570a128c390e31d3d1692
1
// PR optimization/11059
2
// This testcase ICEd because clear_by_pieces was called with zero length.
3
// { dg-do compile }
4
// { dg-options "-O2" }
5
6
union uni {};
7
8
int main() {
9
uni *h;
10
11
h = (uni *)new uni();
12
}
13