"Manu" <turkey...@gmail.com> wrote in message 
news:mailman.513.1386905921.3242.digitalmar...@puremagic.com...
>
> Which appears basically everywhere an asm block does. 'asm' could
> optionally receive an architecture as argument, and lower to the version
> wrapper:
>
> asm(x86)
> {
>  ...
> }
> else asm(ARM)
> {
>  ...
> }
>
> (The 'else's in those examples seem unnecessary)
>

meh

version(x86) asm
{
}
else version(ARM) asm
{
}
else
... 


Reply via email to