public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "valera dot veryazov at teokem dot lu dot se" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/34006]  New: vectorization with 64-bit integers
Date: Tue, 06 Nov 2007 16:23:00 -0000	[thread overview]
Message-ID: <bug-34006-1492@http.gcc.gnu.org/bugzilla/> (raw)

Hi, 
the code (see below) compiled with 
gfortran -O2 -Wall -fdefault-integer-8 -ftree-vectorize a.f
gives a complete garbage, since compiler changing the order of execution 
inside the loop. 
=========================

     DIMENSION Nvec(10),iVEC(10)
      do i=1,10
        Nvec(i)=i
      enddo
      call Zbase(Nvec,iVec,10)
      print *,iVec
      end

      SUBROUTINE ZBASE(NVEC,IVEC,NCLASS)
      DIMENSION NVEC(NCLASS),IVEC(NCLASS)
      IVEC(1) = 1
      DO 100 ICLASS = 2,NCLASS
        IVEC(ICLASS) = IVEC(ICLASS-1)+NVEC(ICLASS-1)
  100 CONTINUE

      RETURN
      END



=========================



Removing -ftree-vectorize, or -fdefault-integer-8, or changing loop to 
'Do 100 ICLASS= 2, 10' solves the problem.

           Best Regards,
                    Valera.


-- 
           Summary: vectorization with 64-bit integers
           Product: gcc
           Version: 4.1.1
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: valera dot veryazov at teokem dot lu dot se
  GCC host triplet: Linux_x86-64 CentOS


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


             reply	other threads:[~2007-11-06 16:23 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-11-06 16:23 valera dot veryazov at teokem dot lu dot se [this message]
2007-11-06 17:46 ` [Bug fortran/34006] " kargl at gcc dot gnu dot org
2007-11-07  9:45 ` valera dot veryazov at teokem dot lu dot se
2007-11-08 14:04 ` [Bug middle-end/34006] [4.2 only] " fxcoudert at gcc dot gnu dot org
2007-12-12  4:06 ` victork at gcc dot gnu dot org
2008-02-05 11:12 ` [Bug middle-end/34006] [4.2 Regression] " rguenth at gcc dot gnu dot org
2008-03-16 17:36 ` [Bug tree-optimization/34006] " rguenth at gcc dot gnu dot org
2008-03-26 10:28 ` victork at gcc dot gnu dot org
2008-04-10 10:37 ` victork at gcc dot gnu dot org
2008-05-19 20:30 ` jsm28 at gcc dot gnu dot org
2009-03-31  0:37 ` jsm28 at gcc dot gnu dot org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-34006-1492@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).