02-23-2010, 09: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
#endif
Or simply, when using something like --fast-floating-point or the like, just define such tag internally.