view gcc/testsuite/gcc.dg/dll-7a.c @ 144:8f4e72ab4e11

fix segmentation fault caused by nothing next cur_op to end
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 21:23:56 +0900
parents 04ced10e8804
children
line wrap: on
line source

extern void i1();
extern void i3();
extern void i4();
extern void i5();

extern void e1();
extern void e3();
extern void e4();
extern void e5();

int main () {
  i1();
  i3();
  i4();
  i5();

  e1();
  e3();
  e4();
  e5();
}