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 testsuite/86649
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
tree-ssa
/
pr21082.C
blob
d6c2fa1d2b5e3e4a8b915363979d4f771ccee1d7
1
/* { dg-do link } */
2
/* { dg-options "-fstrict-overflow" } */
3
4
void link_error();
5
6
int a[4];
7
__INTPTR_TYPE__ b, c;
8
9
int main()
10
{
11
if (&a[b] - &a[c] != b - c)
12
link_error();
13
return 0;
14
}