Technical data

Cray Standard C/C++ Reference Manual
#include <stdio.h>
int f(int a) {
return a*a;
}
#pragma _CRI noinline f /* Direct the compiler not to */
/* inline calls to f. */
main() {
int b = 5;
printf("%d\n", f(b)); /* f is not inlined here */
}
102 S217936