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
PR tree-optimization/86415 - strlen() not folded for substrings within constant arrays
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
asan
/
pr77396.C
blob
3b3195ec1eca65ccb68b35c572610810ad16df3f
1
// PR sanitizer/77396
2
// { dg-do run }
3
// { dg-set-target-env-var ASAN_OPTIONS "check_initialization_order=true" }
4
5
static int a = 0;
6
static int b = a;
7
8
int
9
main ()
10
{
11
return 0;
12
}