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