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
[testsuite] require sqrt_insn effective target where needed
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
powerpc
/
pr93122.c
blob
97bcb0cea5ffe8df458f8653147c7aedf5faea70
1
/* PR target/93122 */
2
/* { dg-require-effective-target power10_ok } */
3
/* { dg-do compile { target lp64 } } */
4
/* { dg-options "-fstack-clash-protection -mprefixed -mdejagnu-cpu=power10" } */
5
6
void
bar
(
char
*);
7
8
void
9
foo
(
void
)
10
{
11
char
s
[
4294967296
];
12
bar
(
s
);
13
}