|
Subject: Re: unreachable code, but why? Newsgroups: gmane.lisp.steel-bank.general Date: 2006-12-21 02:24:52 GMT (2 years, 27 weeks, 6 days, 11 hours and 27 minutes ago) "Florian Ebeling" <florian.ebeling <at> gmail.com> writes: > Ok, I can't see it. > > Why are these to lines (marked below) unreachable > to the compiler? [...] > (do ((b (read-byte stream nil 'eof) ; <-- UNREACHABLE > (read-byte stream nil 'eof)) ; <-- UNREACHABLE It's a known issue with the heuristic that the compiler uses to determine which code is uninteresting and which code to show deletion notes for. Use some other name for the variable instead of STREAM, and the notes should go away. -- Juho Snellman ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV |
|
|