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
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
ssp-1.c
blob
db693327f701e73f6b0a824bb298680b3651d871
1
/* { dg-do run { target native } } */
2
/* { dg-options "-fstack-protector" } */
3
/* { dg-require-effective-target fstack_protector } */
4
5
#include <stdlib.h>
6
7
void
8
__stack_chk_fail
(
void
)
9
{
10
exit
(
0
);
/* pass */
11
}
12
13
int
main
()
14
{
15
register
int
i
;
16
char
foo
[
255
];
17
18
// smash stack
19
for
(
i
=
0
;
i
<=
400
;
i
++)
20
foo
[
i
] =
42
;
21
22
return
1
;
/* fail */
23
}