2010-02-23, 10:27 PM
LCD Wrote:A compiler directive like -fast or -small could help.Another option is to use a define, like -Dfast-math for example, and make the content of .asm files conditional to that define.
Code:
#ifdef fast-math
#else
#endifOr simply, when using something like --fast-floating-point or the like, just define such tag internally.

