Add .cantunwind to _dl_start_user
[platform/upstream/glibc.git] / elf / tst-tlsmod12.c
1 #include "tst-tls10.h"
2
3 extern __thread struct A a2 __attribute__((tls_model("initial-exec")));
4
5 void
6 check1 (void)
7 {
8   if (a1.a != 4 || a1.b != 5 || a1.c != 6)
9     abort ();
10   if (a2.a != 7 || a2.b != 8 || a2.c != 9)
11     abort ();
12 }