lto.c 180 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 // 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; }