Systems programming

James Pelcis jpelcis at gmail.com
Thu Sep 14 15:30:41 PDT 2006


nobody wrote:
> Andreas Kochenburger wrote:
>> Is D really suitable for systems programming, despite its inline 
>> assembler?

Yes.  The larger the project, the more D will help.

> In the DMD compiler the inline assembler has to be explicitly enabled 
> with the -inline argument:
> 
> http://digitalmars.com/d/dcompiler.html

Using -inline doesn't enable the inline assembler.  If the compiler 
supports it and you are using the right architecture, the inline 
assembler is automatically enabled.  Using -inline gets rid of small 
functions by essentially transforming the function call into the code of 
the function.



More information about the Digitalmars-d-learn mailing list