brintos

brintos / llvm-project-archived public Read only

0
0
Text · 204 B · 2aeb755 Raw
14 lines · c
1// REQUIRES: lto2 3// RUN: %clang_lto_safestack %s -o %t4// RUN: %run %t5 6// Test that safe stack works with LTO.7int puts(const char *);8 9int main() {10  char c[] = "hello world";11  puts(c);12  return 0;13}14