This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug lto/69393] [6 Regression] ICE in dwarf2out_finish, at dwarf2out.c:27175 with LTO


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69393

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |trippels at gcc dot gnu.org

--- Comment #11 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
trippels@CFARM-IUT-TLSE3 ~ % cat STAR.ii
class A {
public:
  int runThreadN, outBAMsortingThreadNactual;
};
class B {
public:
  long *binTotalN;
};
class C {
public:
  B *chunkOutBAMcoord;
};
main() {
  A *P;
  C *a[P->runThreadN];
#pragma omp parallel num_threads(P->outBAMsortingThreadNactual)
  int b = a[0]->chunkOutBAMcoord->binTotalN[0];
}

trippels@CFARM-IUT-TLSE3 ~ % g++ -r -nostdlib -flto -g -O2 -fopenmp STAR.ii
lto1: internal compiler error: in dwarf2out_finish, at dwarf2out.c:27200

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]