Jan Hubicka wrote:
for Fortran one of common reason to inline is because array descriptor is known and defines loop stride. This patch makes ipa-inline-analysis to notice these cases.
Thanks for your Fortran inlining work.
+ t(int s, void **p) + { + int i; + for (i;i<10000;i+=s) + p[i]=0; + } + m(void **p) + { + t (10);
Shouldn't that be t(10, p)? Tobias