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
Fix all tests that fail with -sanitize=return.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
tree-ssa
/
pr69547.C
blob
30452340a5c261103b3e9c7b05ab27a134ce4354
1
// { dg-do compile }
2
// { dg-options "-O2 -fdump-tree-cddce1" }
3
4
struct A { A () { } };
5
6
void foo (void*, int);
7
8
void bar ()
9
{
10
enum { N = 64 };
11
A a [N];
12
foo (&a, N);
13
}
14
15
// { dg-final { scan-tree-dump-not "if" "cddce1" } }