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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
mpx
/
pr65508.c
blob
9060287cac5f4a36032c0761b09acecfc99b5557
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fcheck-pointer-bounds -mmpx" } */
3
4
void
5
bar
(
int
N
)
6
{
7
int
a
[
N
];
8
void
foo
(
int
a
[
N
])
9
{
10
}
11
foo
(
a
);
12
}