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
* config/sparc/driver-sparc.c (cpu_names): Add SPARC-T5 entry.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
pr63995-1.C
blob
41a1c01153bcdcd15ee755c00bce3c83770a99ff
1
/* { dg-do compile { target { { i?86-*-* x86_64-*-* } && { ! x32 } } } } */
2
/* { dg-options "-O2 -g -fcheck-pointer-bounds -mmpx" } */
3
4
int test1 (int i)
5
{
6
extern const int arr[10];
7
return arr[i];
8
}
9
10
extern const int arr[10];
11
12
int test2 (int i)
13
{
14
return arr[i];
15
}