Revision 638d6675ee7388e8568a91ac3a6f9075309b45d2 authored by Peter Boyle on 31 August 2015, 15:33:20 UTC, committed by Peter Boyle on 31 August 2015, 15:33:20 UTC
Paranoia makes me want to diddle with the FG step to ensure dt^2 reappears.
1 parent 357c6ab
Raw File
README
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66153

Grid code breaks on GCC4.8, 4.9, 5.0 due to the 
peekIndex<n> operating on lattice.

It erroneously recurses back into the Lattice<obj> variant, even though
the lattice container is dropped.

Work around is possible; if the Lattice routine is given a disambiguating 
name prefix, such as 

latPeekIndex<n> 

GCC5 works. 

However this is ugly and for now I have submitted a bug report to see the reaction and
speed of fixing. 

The simple testcase in this directory is the submitted bug report that encapsulates the
problem. The test case works with icpc and with clang++, but fails consistently on g++
current variants.

Peter
back to top