GIMPLE / induction variable analysis

2006-06-09 Thread Jay L. T. Cornwall
Hi, I'm looking for an induction variable analysis which will operate at the GIMPLE level. So far, I've found... loop-iv.c -- RTL induction variable analysis tree-ssa-loop-ivopts.c -- GIMPLE induction variable analysis The latter appears to be the right choice but nearly all of the functions

Constant multidimensional array pointers inside a class

2007-08-21 Thread Jay L. T. Cornwall
rr3D)[][]; And to delay stride binding until the constructor is analysed. Intel C/C++ goes some way towards this (GCC 4.1 fails on this statement instantly) by allowing this program to compile. However, an error is still flagged if any attempts to access the array are made. -- Jay L. T