Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

x86 inline assembly should provide an alternative for Intel syntax #383

Open
lhmouse opened this issue Mar 24, 2023 · 0 comments
Open

x86 inline assembly should provide an alternative for Intel syntax #383

lhmouse opened this issue Mar 24, 2023 · 0 comments

Comments

@lhmouse
Copy link

lhmouse commented Mar 24, 2023

Instead of

__asm__ __volatile__ ("movl %1, %0" : "=r" (res) : "m" (*x) : "memory");

we should have

 __asm__ __volatile__ ("{ movl %1, %0 | mov %0, %1 }" : "=r" (res) : "m" (*x) : "memory"); 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant