public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/35078]  New: ICE with reference in parallel for loop
@ 2008-02-04 13:54 reichelt at gcc dot gnu dot org
  2008-02-04 14:28 ` [Bug c++/35078] " rguenth at gcc dot gnu dot org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2008-02-04 13:54 UTC (permalink / raw)
  To: gcc-bugs

The following invalid code snippet triggers an ICE since GCC 4.2.0
when compiled with -fopenmp:

===========================================================
template<int> void foo()
{
#pragma omp parallel for
  for (int& i = 0; i < 10; ++i)
    ;
}
===========================================================

bug.cc: In function 'void foo()':
bug.cc:5: internal compiler error: in build_modify_expr, at cp/typeck.c:5809
Please submit a full bug report, [etc.]

Without templates the situation is not much better:

===========================================================
void foo()
{
  int j = 0;

#pragma omp parallel for
  for (int& i = j; i < 10; ++i)
    ;
}
===========================================================

bug.cc: In function 'void foo()':
bug.cc:6: error: 'i' declared as reference but not initialized
bug.cc:7: internal compiler error: in build_modify_expr, at cp/typeck.c:5809
Please submit a full bug report, [etc.]

The compiler issues a bogus error message (the variable is initialized),
and crashes afterwards.


-- 
           Summary: ICE with reference in parallel for loop
           Product: gcc
           Version: 4.3.0
            Status: UNCONFIRMED
          Keywords: ice-on-invalid-code, diagnostic, monitored, openmp
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: reichelt at gcc dot gnu dot org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=35078


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2008-03-10 10:26 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-02-04 13:54 [Bug c++/35078] New: ICE with reference in parallel for loop reichelt at gcc dot gnu dot org
2008-02-04 14:28 ` [Bug c++/35078] " rguenth at gcc dot gnu dot org
2008-02-15 17:57 ` jakub at gcc dot gnu dot org
2008-02-18 10:20 ` jakub at gcc dot gnu dot org
2008-02-19 10:16 ` jakub at gcc dot gnu dot org
2008-03-06 22:10 ` jakub at gcc dot gnu dot org
2008-03-10 10:26 ` jakub at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).