libbacktrace: it's OK if zstd decompressor sees no backward bits
[official-gcc.git] / gcc / testsuite / gcc.target / s390 / nobp-section-type-conflict.c
blob5d78bc99bb56a7331fa734df4f347734bcdb5b7a
1 /* Checks that we don't get error: section type conflict with ‘put_page’. */
3 /* { dg-do compile } */
4 /* { dg-options "-mindirect-branch=thunk-extern -mfunction-return=thunk-extern -mindirect-branch-table -O2" } */
6 int a;
7 int b (void);
8 void c (int);
10 static void
11 put_page (void)
13 if (b ())
14 c (a);
17 __attribute__ ((__section__ (".init.text"), __cold__)) void
18 d (void)
20 put_page ();
21 put_page ();