------- Comment #9 from ubizjak at gmail dot com 2007-10-11 10:32 ------- (In reply to comment #3)
> int bar (char *s) > { > return foo (strlen(s)); > } The testcase above fails with AREG spill failure. The testcase below fails with DIREG spill failure: int bar (int x, long l); int foo (char *s) { return bar (1, strlen(s)); } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24319