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
/
pr67029.c
blob
f0023e524e9382bff7c66e2bf78cfaec28a3b8f0
1
/* { dg-do compile { target { int128 && scheduling } } } */
2
/* { dg-options "-O2 -fschedule-insns" } */
3
/* { dg-additional-options "-fstack-protector" { target fstack_protector } } */
4
5
extern
void
fn2
(
char
*);
6
__int128 a
,
b
;
7
int
8
fn1
(
void
)
9
{
10
char
e
[
32
];
11
fn2
(
e
);
12
b
=
9
* (
a
>>
1
);
13
return
0
;
14
}