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

struct a {
  unsigned b : 7;
};
inline __attribute__((optimize(3))) __attribute__((always_inline)) struct a
c() {
  struct a d;
  return d;
}
void e() {
  for (;;)
    c();
}
int main() {}