comparison gcc/testsuite/g++.dg/template/crash23.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 // PR c++/17642 1 // PR c++/17642
2 2
3 template<int dim> 3 template<int dim>
4 int f(const int* const lsh, const int* const bbox, const int* const nghostzones, int d) 4 void f(const int* const lsh, const int* const bbox, const int* const nghostzones, int d)
5 { 5 {
6 for (int d=0; d<dim; ++d) 6 for (int d=0; d<dim; ++d)
7 lsh[d] - (bbox[2*d+1] ? 0 : nghostzones[d]); 7 lsh[d] - (bbox[2*d+1] ? 0 : nghostzones[d]);
8 } 8 }
9 9