reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    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;
}