>>>>> "Alexander" == Alexander Leidinger <[EMAIL PROTECTED]> writes:
Alexander> As gcc should be able to utilize MMX, SSE, SSE2 and 3dnow Alexander> with inline assembly now, it would be nice if someone would Alexander> try to use it instead of using a 3rd party assembler. Actually, you realy want to the the intrinsics rather than assembly. The intrinsics look just like function calls at the C level (making them easier to understand), the compiler deals with the minutiae of register assignments, function call abi issues, et al so you only have the algorithm to deal with, and the compiler's optimizer is not blocked. In short, they should be easier to use well than raw assembly, whether inlined or external. -JimC _______________________________________________ mp3encoder mailing list [EMAIL PROTECTED] http://minnie.tuhs.org/mailman/listinfo/mp3encoder
