aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/debug/pr89704.c
blob: 4a8cf4fa4564d5b49267c1fe80fab6f62e39fc94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* PR debug/89704 */
/* { dg-do compile } */

typedef __INTPTR_TYPE__ intptr_t;

int
foo (void)
{
  lab1:;
  lab2:;
  static int i = (intptr_t) &&lab1 - (intptr_t) &&lab2;
  static int j = (intptr_t) &&lab1 - (intptr_t) &&lab2;
  return i;
}