
19 Apr
2007
19 Apr
'07
8:17 p.m.
AMDG Olaf Krzikalla <krzikalla <at> gmx.net> writes:
I have some SIMD classes where inlining of operators are important even in debug code. In other words: these parts are so performance critical that I compile them with some tweaked compiler flags, because otherwise the application becomes undebuggable. At least gcc [__inline __attribute__((__always_inline__,__nodebug__))] and MSVC2005 [__forceinline] support extra inline statements.
I might point out that msvc with /Od ignores __forceinline. In Christ, Steven Watanabe