Sign in
cobalt
/
cobalt
/
308ed6b84664d59944cd65f4b4359c28a2443be6
/
.
/
src
/
third_party
/
llvm-project
/
compiler-rt
/
test
/
safestack
/
lto.c
blob: 6ee23a1c72f2850fc3e11e67ea6136127d811f38 [
file
] [
log
] [
blame
]
// REQUIRES: lto
// RUN: %clang_lto_safestack %s -o %t
// RUN: %run %t
// Test that safe stack works with LTO.
int
main
()
{
char
c
[]
=
"hello world"
;
puts
(
c
);
return
0
;
}