How to use compiler builtin functions without Standard C library
问题 I know that some functions like sin cos min max memcpy may be treated not as normal functions but may be replaced by built-in functions (which may be more optimal than merely inline function calls, when the replacement is (an) actual processor instruction(s), such as directly calling the FSIN instruction for standard sin function when compiled for an x86 with a floating point unit). The question I would like to use power of built-in functions (in C/C++ mostly in mingw/gcc maybe other compiler