1 // RUN: %clang %target_itanium_abi_host_triple -arch x86_64 %s -o %t.out -g -fsanitize=safe-stack
2 // RUN: %test_debuginfo %s %t.out
3 // UNSUPPORTED: system-darwin
4 // REQUIRES: !asan, compiler-rt
5 // Zorg configures the ASAN stage2 bots to not build the
6 // safestack compiler-rt. Only run this test on
7 // non-asanified configurations.
8 // XFAIL: !system-darwin && gdb-clang-incompatibility
13 int f(struct S s
, unsigned i
);
15 int main(int argc
, const char **argv
) {
16 struct S s
= {{0, 1, 2, 3, 4, 5, 6, 7}};
23 int f(struct S s
, unsigned i
) {