2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20031010-1.c
blob33c71c6d18a5b5440a2c210cd497273501ec9ebc
1 /* This crashed the ARM backend with -mcpu=iwmmxt -O because an insn
2 required a split which was not available for the iwmmxt. */
3 inline int *f1(int* a, int* b) { if (*b < *a) return b; return a; }
4 int f2(char *d, char *e, int f) { int g = e - d; return *f1(&f, &g); }