c - What is the difference between '__asm' and '__asm__'? -


i learning inline assembly in c. far can tell, difference between __asm { ... }; , __asm__("..."); first uses mov eax, var , second uses movl %0, %%eax :"=r" (var) @ end. also, there lot less websites first. other differences there?

which 1 use depends on compiler. isn't standard c language.


Comments

Popular posts from this blog

windows - Why does Vista not allow creation of shortcuts to "Programs" on a NonAdmin account? Not supposed to install apps from NonAdmin account? -

c++ - How do I get a multi line tooltip in MFC -

unit testing - How to mock PreferenceManager in Android? -