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/81384 - built-in form of strnlen missing
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
931018-1.c
blob
01b6050bf3531933a866512f2f37812223c69754
1
unsigned int
a
[
0x1000
];
2
extern
const unsigned long
v
;
3
4
main
()
5
{
6
f
(
v
);
7
f
(
v
);
8
exit
(
0
);
9
}
10
11
f
(
a
)
12
unsigned long
a
;
13
{
14
if
(
a
!=
0xdeadbeef
L
)
15
abort
();
16
}
17
18
const unsigned long
v
=
0xdeadbeef
L
;