view gcc/testsuite/g++.dg/opt/crash1.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

// PR opt/13681
// Here we have an out-of-range array index.  We should not abort
// trying to resolve the indirection back to an object.

struct X { 
    double values[1]; 
    double & foo (const unsigned int index) { return values[index]; } 
}; 
 
void foo() { 
  double d; 
  X h1; 
  h1.foo(1) = d; 
}