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
Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr71279.c
blob
4ecc84b642596c7cef0b7638f1b096b9e7c89781
1
/* PR middle-end/71279 */
2
/* { dg-do compile } */
3
/* { dg-options "-O3" } */
4
/* { dg-additional-options "-march=knl" { target { i?86-*-* x86_64-*-* } } } */
5
6
extern
int
a
,
b
;
7
long
c
[
1
][
1
][
1
];
8
long
d
[
1
][
1
];
9
10
void
fn1
()
11
{
12
for
(
int
e
=
0
;
e
<
b
;
e
=
e
+
1
)
13
*(
e
+ **
c
) = (
a
&& *
d
[
1
]) -
1
;
14
}