android_mt6572_jiabo/external/compiler-rt/test/safestack/lto.c
2025-09-05 16:56:03 +08:00

12 lines
180 B
C

// 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;
}