468663ddbb
Former-commit-id: 1d6753294b2993e1fbf92de9366bb9544db4189b
13 lines
180 B
C
13 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;
|
|
}
|