We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
struct fpu { int last_cpu }; int *current_task, *prev_p, *next_p; int switch_fpu_prepare_cpu; long foo_pfo_val__; void minimal_fpu_save(); void foo() { int *__trans_tmp_7 = ({ ({ asm("movq %%gs:%[var], %[val]" : [val] "=r"(foo_pfo_val__) : [var] "p"(¤t_task)); (int *)foo_pfo_val__; }); }); if (__trans_tmp_7) { struct fpu *old_fpu = prev_p; minimal_fpu_save(prev_p); old_fpu->last_cpu = switch_fpu_prepare_cpu; } }
Can become:
struct fpu { int last_cpu }; int *current_task, *prev_p, *next_p; int switch_fpu_prepare_cpu; long foo_pfo_val__; void minimal_fpu_save(); void foo() { asm("movq %%gs:%[var], %[val]" : [val] "=r"(foo_pfo_val__) : [var] "p"(¤t_task)); if (foo_pfo_val__) { struct fpu *old_fpu = prev_p; minimal_fpu_save(prev_p); old_fpu->last_cpu = switch_fpu_prepare_cpu; } }
The text was updated successfully, but these errors were encountered:
Thank you for the suggestion!
Sorry, something went wrong.
chenyang78
No branches or pull requests
Can become:
The text was updated successfully, but these errors were encountered: