On Fri, Apr 17, 2009 at 05:42:08PM +0200, Roland Mainz wrote: > > Hi! > > ---- > > Is there somewhere a document which describes which functions are > available as builtin functions via Sun Studio's "-xbuiltin=%all" option > ?
Not really. We do not handle it as "direct" builtins, that is headers do not contain compiler specific symbols, like builtin_sqrt or whatnot. Optimizing compiler components (backends) are able to optimize nearly every standard function (function that is declared in a standard header). Different backends on different platforms have different ideas on what is a good function to optimize. What are you trying to solve with that document? regards, Fedor.
