﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	difficulty
1094	define-inline does not respect inline-limit	johnwcowan	evhan	"If you define a recursive procedure with `define-inline`, csc 4.8.0.4 loops.

{{{
(define-inline (foo x) (if (= x 0) 0 (+ (foo (- x 1)) 1)))
(foo 32)
}}}

Compile with `csc -t`, wait forever.  This is not the case with

{{{
(declare (inline foo))
(define (foo x) (if (= x 0) 0 (+ (foo (- x 1)) 1)))
(foo 32)
}}}

which suppresses the inlining.
"	defect	closed	major	4.10.0	compiler	4.8.x	fixed			
