public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug middle-end/48591] New: OpenMP ICE with atomics on __float128 in 32-bit only i686 cc1
@ 2011-04-13 12:44 jakub at gcc dot gnu.org
  2011-04-13 13:12 ` [Bug middle-end/48591] " jakub at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-04-13 12:44 UTC (permalink / raw)
  To: gcc-bugs

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

           Summary: OpenMP ICE with atomics on __float128 in 32-bit only
                    i686 cc1
           Product: gcc
           Version: 4.6.0
            Status: UNCONFIRMED
          Keywords: ice-on-valid-code, openmp
          Severity: normal
          Priority: P3
         Component: middle-end
        AssignedTo: jakub@gcc.gnu.org
        ReportedBy: jakub@gcc.gnu.org


extern void abort (void);

int
main ()
{
  __float128 f = 0.0;
  int i;
  #pragma omp parallel for reduction(+:f)
  for (i = 0; i < 128; i++)
    f++;
  if (f != 128.0Q)
    abort ();
  return 0;
}

ICEs with -fopenmp in 32-bit i686-linux cc1 (while works fine with x86_64-linux
cc1 with -fopenmp -m32).


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

end of thread, other threads:[~2011-04-13 15:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-04-13 12:44 [Bug middle-end/48591] New: OpenMP ICE with atomics on __float128 in 32-bit only i686 cc1 jakub at gcc dot gnu.org
2011-04-13 13:12 ` [Bug middle-end/48591] " jakub at gcc dot gnu.org
2011-04-13 15:50 ` jakub at gcc dot gnu.org
2011-04-13 15:52 ` jakub at gcc dot gnu.org
2011-04-13 15:59 ` jakub at gcc dot gnu.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).