Re: with-inline-assembly-case
Frode Vatvedt Fjeld <[email protected]> Wed, 18 Aug 2004 21:43:19 +0200
| Newsgroups | gmane.lisp.movitz.devel |
|---|---|
| Message-ID | <[email protected]> |
James Crippen <[email protected]> writes: > What is the purpose of with-inline-assembly-case? I understand the > idea of the inline assembly directive, but I don't get why it needed > to be folded into a case statement. The with-inline-assembly-case is just a mechanism for weaving the inline assembly into the compiler's code with a bit more fine-grained control. The "case" refers to a compile-time dispatch on the current "result-mode" of the compiler. Which is a reall broken concept to begin with, but that's just me not really knowing how to write a compiler. Anyway, I'd simply suggest ignoring the with-inline-assembly-case operator, if at all possible. -- Frode Vatvedt Fjeld