1 /* Origin: hp@bitrange.com
2 Test that return values come out right from a 1000-level call chain to
3 functions without parameters that each need at least one "long"
4 preserved. Exposed problems related to the MMIX port. */
7 extern long foo (void);
8 extern long bar (void);
11 #define DEPTH ((STACK_SIZE) / 512 + 1)
36 return tmp
> DEPTH
- 1 ? -42 - tmp
: foo () - tmp
;