Path: utzoo!utgpu!utorvm!ryerson!eety1478 Date: Thursday, 15 Nov 1990 23:21:25 EST From: Kevin Morwood Message-ID: <90319.232125EETY1478@Ryerson.CA> Newsgroups: comp.sys.amiga.tech Subject: Re: C compilers code generation References: <1990Nov12.135444.10739@cs.utwente.nl> <1990Nov12.164804.5490@agate.berkeley.edu> <26893.273fe96d@kuhub.cc.ukans.edu> Actually one definite problem I've had with __builtins is that when you want to do something like: qsort(&base,num,size,strcmp); The compiler tries to inline the reference to strcmp and then bitches rather profusely cause it doesn't like it. Then you have to undefine the builtin at the point of the qsort call followed by redefining it afterward (if you want to get the benefit of ANY of the __builtin availability). Generally...unimpressed.