[Bug middle-end/34006] [4.2 only] vectorization with 64-bit integers

2007-12-11 Thread victork at gcc dot gnu dot org
--- Comment #4 from victork at gcc dot gnu dot org 2007-12-12 04:06 --- I have tried both testcases with compiler built from svn branch of 4.2 (svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_2-branch) on x86_64. Both cases run correctly. Looks like this bug is already fixed in 4.2 and

[Bug middle-end/34006] [4.2 only] vectorization with 64-bit integers

2007-11-08 Thread fxcoudert at gcc dot gnu dot org
--- Comment #3 from fxcoudert at gcc dot gnu dot org 2007-11-08 14:04 --- Testcase that doesn't require -fdefault-integer-8: $ cat a.f90 program test integer(kind=8) nvec(10), ivec(10), nclass integer i nvec(:)= 1 ivec(:) = 0 call zbase(nvec,ivec,10) write(*,'(10I3)') ivec