aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr81262.c
blob: 68fbea2a7ab8531f6236c9a836a32e515e8a7483 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* PR sanitizer/81262 */

void bar (void) __attribute__((cold, noreturn));

int
foo (void)
{
  asm goto ("" : : : : l1, l2);
  bar ();
 l1:
  return 1;
 l2:
  return 0;
}